1 2 3 4 5 6 7 8 9 10 11 12
| <Grid x:Name="LayoutRoot" Background="#FFFFFFFF">
<ComboBox Height="Auto" Margin="244,6,34,0" x:Name="cbBox_requisCertification" d:LayoutOverrides="Height" VerticalAlignment="Top"/>
<ComboBox HorizontalAlignment="Left" Margin="8,4,0,0" Width="44" x:Name="cbBox_EtOU" VerticalAlignment="Top" Height="23">
<ComboBoxItem Height="7" Width="13" Content="ET" x:Name="comboItem_ET"/>
<ComboBoxItem Height="15" Width="24" Content="OU" x:Name="comboitem_OU"/>
</ComboBox>
<ComboBox Height="Auto" x:Name="cb_prerequisFormation" Width="149" ToolTipService.ToolTip="Sélectionnez le type de l'élément prérequis" HorizontalAlignment="Left" Margin="66,6,0,0" SelectionChanged="cb_prerequisFormation_SelectionChanged" d:LayoutOverrides="Height" VerticalAlignment="Top">
<ComboBoxItem x:Name="Formation" Content="Formation"/>
<ComboBoxItem x:Name="Cursus" Content="Cursus"/>
<ComboBoxItem x:Name="Certif" Content="Certification"/>
</ComboBox>
</Grid> |
Partager