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

37 lines
1.4 KiB
XML

<Grid x:Class="UpdateVersionPageV"
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 UpdateVersionPageVM}">
<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 UpdateVersionMsg}"
FontSize="30"
TextAlignment="Center"/>
</Border>
<LicenseManager:VersionPageV Grid.Row="1"
Grid.ColumnSpan="2"/>
<UniformGrid Grid.Row="3" Columns="2">
<Button Content="{Binding UpdateMsg}"
Command="{Binding UpdateVersion_Command}"
Style="{StaticResource Page_Button}"/>
<Button Content="{Binding CancelMsg}"
Command="{Binding Cancel_Command}"
Style="{StaticResource Page_Button}"/>
</UniformGrid>
<!--<TextBlock HorizontalAlignment="Left" Margin="349,72.8,-89,0" Grid.Row="1" TextWrapping="Wrap" Text="Version number" VerticalAlignment="Top" Grid.RowSpan="2"/>-->
</Grid>