Files
egtbeamwall/EgtBEAMWALL.Supervisor/MachCommandMessagePanel/MachCommandMessagePanelV.xaml
T
Emmanuele Sassi d071bcb321 - Agginta gestione canali per NUM
- Introdotta gestione ingressi/uscite, da testare
- Divisi errori NUM in 4 categorie con colori
2021-11-18 17:10:39 +01:00

42 lines
1.9 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}"
Background="{Binding ErrCycle_Foreground}"/>
<TextBlock Text="{Binding sIso}"
Background="{Binding Iso_Foreground}"/>
<TextBlock Text="{Binding sMessage}"
Background="{Binding Message_Foreground}"/>
<TextBlock Text="{Binding sErrSystem}"
Background="{Binding ErrSystem_Foreground}"/>
<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>