2ff390d577
- Primo commit.
37 lines
1.2 KiB
XML
37 lines
1.2 KiB
XML
<Grid x:Class="NewVersionPageV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:LicenseManager="clr-namespace:LicenseManager"
|
|
DataContext="{StaticResource NewVersionPageVM}">
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Border BorderBrush="Black"
|
|
BorderThickness="1"
|
|
Height="75"
|
|
Grid.ColumnSpan="2">
|
|
<TextBlock Height="50"
|
|
Text="{Binding NewVersionMsg}"
|
|
FontSize="30"
|
|
TextAlignment="Center"/>
|
|
</Border>
|
|
|
|
<LicenseManager:VersionPageV Grid.Row="1"
|
|
Grid.ColumnSpan="2"/>
|
|
|
|
<UniformGrid Grid.Row="3" Columns="2">
|
|
<Button Content="{Binding AddMsg}"
|
|
Command="{Binding AddVersion_Command}"
|
|
IsDefault="True"
|
|
Style="{StaticResource Page_Button}"/>
|
|
|
|
<Button Content="{Binding CancelMsg}"
|
|
Command="{Binding Cancel_Command}"
|
|
Style="{StaticResource Page_Button}"/>
|
|
</UniformGrid>
|
|
|
|
</Grid> |