2ff390d577
- Primo commit.
114 lines
3.6 KiB
XML
114 lines
3.6 KiB
XML
<Grid x:Class="MainMenuV"
|
|
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"
|
|
DataContext="{StaticResource MainMenuVM}">
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Border BorderBrush="Black"
|
|
BorderThickness="1"
|
|
Height="75"
|
|
Grid.Row="0">
|
|
<TextBlock Height="50"
|
|
Text="Main Menù"
|
|
FontSize="30"
|
|
TextAlignment="Center"/>
|
|
</Border>
|
|
|
|
<Grid Grid.Row="1">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
<Button Content="Nuovo cliente"
|
|
Command="{Binding NewClient_Command}"
|
|
Height="60"
|
|
Width="170"
|
|
Grid.Column="0"
|
|
Grid.Row="0"/>
|
|
<Button Content="Nuova chiave"
|
|
Command="{Binding NewKey_Command}"
|
|
Height="60"
|
|
Width="170"
|
|
Grid.Column="0"
|
|
Grid.Row="1"/>
|
|
<Button Content="Nuova licenza"
|
|
Command="{Binding NewLicence_Command}"
|
|
Height="60"
|
|
Width="170"
|
|
Grid.Column="0"
|
|
Grid.Row="2"/>
|
|
<Button Content="Nuovo prodotto"
|
|
Command="{Binding NewProduct_Command}"
|
|
Height="60"
|
|
Width="170"
|
|
Grid.Column="0"
|
|
Grid.Row="3"/>
|
|
<Button Content="Nuova versione"
|
|
Command="{Binding NewVersion_Command}"
|
|
Height="60"
|
|
Width="170"
|
|
Grid.Column="0"
|
|
Grid.Row="4"/>
|
|
<Button Content="Nuovo rivenditore"
|
|
Command="{Binding NewReseller_Command}"
|
|
Height="60"
|
|
Width="170"
|
|
Grid.Column="0"
|
|
Grid.Row="5"/>
|
|
|
|
|
|
<Button Content="Cerca cliente"
|
|
Command="{Binding SearchClient_Command}"
|
|
Height="60"
|
|
Width="170"
|
|
Grid.Column="2"
|
|
Grid.Row="0"/>
|
|
<Button Content="Cerca chiave"
|
|
Command="{Binding SearchKey_Command}"
|
|
Height="60"
|
|
Width="170"
|
|
Grid.Column="2"
|
|
Grid.Row="1"/>
|
|
<Button Content="Cerca licenza"
|
|
Command="{Binding SearchLicence_Command}"
|
|
Height="60"
|
|
Width="170"
|
|
Grid.Column="2"
|
|
Grid.Row="2"/>
|
|
<Button Content="Cerca prodotto"
|
|
Command="{Binding SearchProduct_Command}"
|
|
Height="60"
|
|
Width="170"
|
|
Grid.Column="2"
|
|
Grid.Row="3"/>
|
|
<Button Content="Cerca versione"
|
|
Command="{Binding SearchVersion_Command}"
|
|
Height="60"
|
|
Width="170"
|
|
Grid.Column="2"
|
|
Grid.Row="4"/>
|
|
<Button Content="Cerca rivenditore"
|
|
Command="{Binding SearchReseller_Command}"
|
|
Height="60"
|
|
Width="170"
|
|
Grid.Column="2"
|
|
Grid.Row="5"/>
|
|
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|