22 lines
903 B
XML
22 lines
903 B
XML
<StackPanel x:Class="FeatureManagerV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
|
|
Orientation="Horizontal"
|
|
Height="28">
|
|
|
|
<TextBlock Text="Face"
|
|
Style="{StaticResource OptionTextBlock}"/>
|
|
<ComboBox ItemsSource="{Binding SIDEList}"
|
|
SelectedItem="{Binding nSelSIDE}"
|
|
Style="{StaticResource FeatureComboBox}"/>
|
|
<TextBlock Text="Group"
|
|
Style="{StaticResource OptionTextBlock}"/>
|
|
<ComboBox ItemsSource="{Binding GRPList}"
|
|
SelectedItem="{Binding nSelGRP}"
|
|
Style="{StaticResource FeatureComboBox}"/>
|
|
<TextBlock Text="{Binding sName}"
|
|
Style="{StaticResource OptionTextBlock}"/>
|
|
|
|
</StackPanel>
|