1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| <Window x:Class="EnvoiNotification.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="485" Width="917">
<Grid>
<ListBox Height="265" HorizontalAlignment="Left" Margin="232,123,0,0" Name="listBox1" VerticalAlignment="Top" Width="300" MouseDoubleClick="listBox1_MouseDoubleClick" />
<ComboBox Height="23" HorizontalAlignment="Left" Margin="262,52,0,0" Name="comboBox1" VerticalAlignment="Top" Width="248" SelectionChanged="comboBox1_SelectionChanged" />
<ListBox Height="265" HorizontalAlignment="Left" Margin="562,123,0,0" Name="listBox2" VerticalAlignment="Top" Width="300" MouseDoubleClick="listBox2_MouseDoubleClick" />
<ComboBox Height="23" HorizontalAlignment="Left" Margin="562,52,0,0" Name="comboBox2" VerticalAlignment="Top" Width="248" SelectionChanged="comboBox2_SelectionChanged" />
<Label Content="Choisir un chantier" Height="23" HorizontalAlignment="Left" Margin="108,52,0,0" Name="label1" VerticalAlignment="Top" Width="148" />
<Label Content="Rapport - Choisir entreprise" Height="23" HorizontalAlignment="Left" Margin="562,21,0,0" Name="label2" VerticalAlignment="Top" Width="148" />
<Label Content="Ordre de Service" Height="23" HorizontalAlignment="Left" Margin="232,94,0,0" Name="label3" VerticalAlignment="Top" Width="148" />
<Label Content="Choisir un rapport" Height="23" HorizontalAlignment="Left" Margin="562,94,0,0" Name="label4" VerticalAlignment="Top" Width="148" />
</Grid>
</Window> |
Partager