2ff390d577
- Primo commit.
42 lines
1.5 KiB
XML
42 lines
1.5 KiB
XML
<Grid x:Class="NewKeyPageV"
|
|
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"
|
|
xmlns:LicenseManager="clr-namespace:LicenseManager"
|
|
DataContext="{StaticResource NewKeyPageVM}">
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Border BorderBrush="Black"
|
|
BorderThickness="1"
|
|
Height="75"
|
|
Grid.Row="0">
|
|
<TextBlock Height="50"
|
|
Text="{Binding NewKeyMsg}"
|
|
FontSize="30"
|
|
TextAlignment="Center"/>
|
|
</Border>
|
|
|
|
<LicenseManager:KeyPageV Grid.Row="1"
|
|
Grid.ColumnSpan="2"/>
|
|
|
|
<UniformGrid Grid.Row="2" Columns="2">
|
|
<Button Content="{Binding AddMsg}"
|
|
Command="{Binding AddKey_Command}"
|
|
Grid.Column="0"
|
|
Grid.Row="2"
|
|
Style="{StaticResource Page_Button}"/>
|
|
|
|
<Button Content="{Binding CancelMsg}"
|
|
Command="{Binding Cancel_Command}"
|
|
Grid.Column="1"
|
|
Grid.Row="2"
|
|
Style="{StaticResource Page_Button}"/>
|
|
</UniformGrid>
|
|
|
|
</Grid>
|