2ff390d577
- Primo commit.
39 lines
1.4 KiB
XML
39 lines
1.4 KiB
XML
<Grid x:Class="VersionPageV"
|
|
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">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<!--Text="{Binding VersionNumberMsg}"-->
|
|
<TextBlock Text="Version number"
|
|
Grid.Column="0"
|
|
Grid.Row="0"
|
|
Style="{StaticResource ParametersTextBlock}"/>
|
|
|
|
<EgtWPFLib5:EgtTextBox Text="{Binding VersionNumber}"
|
|
Grid.Column="1"
|
|
Grid.Row="0"
|
|
Style="{StaticResource ParameterTextBox}"/>
|
|
|
|
<TextBlock Text="{Binding ProductNameMsg}"
|
|
Grid.Column="0"
|
|
Grid.Row="1"
|
|
Style="{StaticResource ParametersTextBlock}"/>
|
|
|
|
<ComboBox Name="ProductComboBox"
|
|
ItemsSource="{Binding ProductList}"
|
|
SelectedItem="{Binding SelProduct, Mode=TwoWay}"
|
|
DisplayMemberPath="ProductName"
|
|
Grid.Column="1"
|
|
Grid.Row="1"
|
|
Style="{StaticResource ParametersComboBox}"/>
|
|
|
|
</Grid> |