1 2 3 4 5 6 7 8 9 10 11 12
|
<Window x:Class="InstructionWhile.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Instruction while" Height="500" Width="500">
<Grid>
<Button Height="23" HorizontalAlignment="Left" Margin="11,40,0,0" Name="ouvrirFichier" VerticalAlignment="Top" Width="97" Click="ouvrirFichierClick">Ouvrir un fichier</Button>
<Label Height="23.277" Margin="110,9,218,0" Name="label1" VerticalAlignment="Top">Fichier sélectionné</Label>
<TextBox Height="26" Margin="120,39,12,0" Name="nomFichier" VerticalAlignment="Top" />
<TextBox Margin="11,77,12,14" Name="source" IsReadOnly="True" AcceptsReturn="True" AcceptsTab="True" TextWrapping="WrapWithOverflow" VerticalScrollBarVisibility="Auto" />
</Grid>
</Window> |
Partager