d1afc92d94
- creazione lista porte
18 lines
649 B
XML
18 lines
649 B
XML
<Grid x:Class="MainMenuV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Button Content="Door List"
|
|
Command="{Binding DoorList_Command}"/>
|
|
<Button Grid.Column="1"
|
|
Content="Machine Status"
|
|
Command="{Binding MachineStatus_Command}"/>
|
|
<Button Grid.Column="2"
|
|
Content="Statistics"
|
|
Command="{Binding Statistics_Command}"/>
|
|
</Grid>
|