Files
LicenceManager/NewVersionPage/NewVersionPageV.xaml
T
Renzo Lanza 2ff390d577 LicenceManager 2.1b1 :
- Primo commit.
2019-02-20 09:46:20 +00:00

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>