Files
egtbeamwall/EgtBEAMWALL.Supervisor/MachCommandMessagePanel/MachCommandMessagePanelV.xaml
T
Demetrio Cassarino 0e2163e0a8 Optimizer 2.7.11.7
-pulizia dizionario supervisore
2025-11-17 09:30:01 +01:00

50 lines
2.3 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}"
Foreground="White"/>
<TextBlock Text="{Binding sIso}"
Background="{Binding Iso_Foreground}"/>
<TextBlock Text="{Binding sMessage}"
Background="{Binding Message_Foreground}"/>
<TextBlock Text="{Binding sErrSystem}"
Background="{Binding ErrSystem_Foreground}"/>
<WrapPanel Orientation="Horizontal" Width="{Binding ActualWidth, ElementName=TOPTRAY}">
<Button Content="CONNECT"
Command="{Binding Connect_Command}"
Background="{Binding Connect_Background}"
Style="{StaticResource EgtWPFLib5_Button}"
Margin="10,0,10,2"/>
<Button Content="START"
Command="{Binding Start_Command}"
IsEnabled="{Binding CommBtn_IsEnabled}"
Style="{StaticResource EgtWPFLib5_Button}"
Margin="10,0,10,2"/>
<Button Content="STOP"
Command="{Binding Stop_Command}"
IsEnabled="{Binding CommBtn_IsEnabled}"
Style="{StaticResource EgtWPFLib5_Button}"
Margin="10,0,10,2"/>
<Button Content="RESET"
Command="{Binding Reset_Command}"
IsEnabled="{Binding CommBtn_IsEnabled}"
Style="{StaticResource EgtWPFLib5_Button}"
Margin="10,0,10,2"/>
<Button Content="SET POINT"
Command="{Binding SetPoint_Command}"
IsEnabled="{Binding CommBtn_IsEnabled}"
Style="{StaticResource EgtWPFLib5_Button}"
Margin="10,0,10,2"/>
<Button Content="DELETE ALARMS"
Command="{Binding DeleteAlarms_Command}"
Visibility="{Binding DeleteAlarm_Visibility}"
IsEnabled="{Binding CommBtn_IsEnabled}"
Style="{StaticResource EgtWPFLib5_Button}"
Width="120" Margin="10,0,10,2"/>
</WrapPanel>
</StackPanel>
</UserControl>