2e90c9db1a
- Aggiunte varie.
18 lines
833 B
XML
18 lines
833 B
XML
<EgtWPFLib5:EgtCustomWindow x:Class="OptionWindowV"
|
|
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"
|
|
TitleBarBrush="{StaticResource Omag_LightGray}"
|
|
BorderBrush="{StaticResource Omag_Gray}" SizeToContent="WidthAndHeight">
|
|
|
|
<GroupBox Header="{Binding CurrentLanguageMsg}" Margin="5">
|
|
<UniformGrid Rows="2">
|
|
<ComboBox ItemsSource="{Binding LanguageList, Mode=OneWay}" Height="25"
|
|
DisplayMemberPath="Name" SelectedItem="{Binding SelectedLanguage}"/>
|
|
<TextBlock Text="{Binding LanguageAdvertMsg}" TextWrapping="Wrap"
|
|
TextAlignment="Center"/>
|
|
</UniformGrid>
|
|
</GroupBox>
|
|
|
|
</EgtWPFLib5:EgtCustomWindow>
|