Files
EgtCOMMTest/MachCommandMessagePanel/MachCommandMessagePanelV.xaml
Emmanuele Sassi 6e4645875b - Primo commit
- Tpa funzionante
2021-09-29 11:35:42 +02:00

38 lines
1.7 KiB
XML

<UserControl x:Class="MachCommandMessagePanelV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel>
<TextBlock Text="{Binding sErrCycle}"/>
<TextBlock Text="{Binding sIso}"/>
<TextBlock Text="{Binding sMessage}"/>
<TextBlock Text="{Binding sErrSystem}"/>
<Button Content="CANCELLA ALLARMI"
Command="{Binding DeleteAlarms_Command}"
Visibility="Collapsed"/>
<StackPanel Orientation="Horizontal">
<Button Content="CONNECT"
Command="{Binding Connect_Command}"
Background="{Binding Connect_Background}"
Style="{StaticResource ToolBar_TextButton}"/>
<Button Content="START"
Command="{Binding Start_Command}"
Style="{StaticResource ToolBar_TextButton}"/>
<Button Content="STOP"
Command="{Binding Stop_Command}"
Style="{StaticResource ToolBar_TextButton}"/>
<Button Content="RESET"
Command="{Binding Reset_Command}"
Style="{StaticResource ToolBar_TextButton}"/>
<Button Content="STEP"
Command="{Binding Step_Command}"
Style="{StaticResource ToolBar_TextButton}"/>
<Button Content="SET POINT"
Command="{Binding SetPoint_Command}"
Style="{StaticResource ToolBar_TextButton}"/>
<Button Content="DELETE ALARMS"
Command="{Binding DeleteAlarms_Command}"
Style="{StaticResource ToolBar_TextButton}"/>
</StackPanel>
</StackPanel>
</UserControl>