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

35 lines
1.2 KiB
XML

<Grid x:Class="UpdateClientPageV"
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 UpdateClientPageVM}">
<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 UpdateClientMsg}"
FontSize="30"
TextAlignment="Center"/>
</Border>
<LicenseManager:ClientPageV Grid.Row="1"
Grid.ColumnSpan="2"/>
<UniformGrid Grid.Row="3" Columns="2">
<Button Content="{Binding UpdateMsg}"
Command="{Binding UpdateClient_Command}"
Style="{StaticResource Page_Button}"/>
<Button Content="{Binding CancelMsg}"
Command="{Binding Cancel_Command}"
Style="{StaticResource Page_Button}"/>
</UniformGrid>
</Grid>