2ff390d577
- Primo commit.
43 lines
1.4 KiB
XML
43 lines
1.4 KiB
XML
<Grid x:Class="NewClientPageV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:LicenseManager="clr-namespace:LicenseManager"
|
|
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
|
|
DataContext="{StaticResource NewClientPageVM}">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Border BorderBrush="Black"
|
|
BorderThickness="1"
|
|
Height="75"
|
|
Grid.ColumnSpan="2">
|
|
<TextBlock Height="50"
|
|
Text="{Binding NewClientMsg}"
|
|
FontSize="30"
|
|
TextAlignment="Center"/>
|
|
</Border>
|
|
|
|
<LicenseManager:ClientPageV Grid.Row="1"
|
|
Grid.ColumnSpan="2"/>
|
|
|
|
<Button Content="{Binding AddMsg}"
|
|
Command="{Binding AddClient_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}"/>
|
|
|
|
</Grid> |