Files
effector.plugin.fivelakes/Supervisor.Plugin.FiveLakes/MainMenu/MainMenuV.xaml
T
Emmanuele Sassi d1afc92d94 - creazione dictionary
- creazione lista porte
2024-07-31 19:44:01 +02:00

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>