Files
egtbeamwall/EgtBEAMWALL.Supervisor/MachCommandMessagePanel/MachCommandMessagePanelV.xaml
T
Emmanuele Sassi 2917207424 - allargato spazio letto su db302 siemens
- eliminati bottoni macchina su siemens
- aggiunto ResetStep su bottono reset
- aggiunta modalita' remotedebug per Optimizer
2026-05-26 16:26:52 +02:00

48 lines
2.4 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}"
Style="{StaticResource MachCommandMessagePanel_TextBlock}"/>
<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 Width="{Binding ActualWidth, ElementName=TOPTRAY}"
Style="{StaticResource ProjectH_WrapPanel}">
<Button Content="CONNECT"
Command="{Binding Connect_Command}"
Background="{Binding Connect_Background}"
Style="{StaticResource MachCommandMessagePanel_Button}"/>
<Button Content="START"
Command="{Binding Start_Command}"
Visibility="{Binding Start_Visibility}"
IsEnabled="{Binding CommBtn_IsEnabled}"
Style="{StaticResource MachCommandMessagePanel_Button}"/>
<Button Content="STOP"
Command="{Binding Stop_Command}"
Visibility="{Binding Stop_Visibility}"
IsEnabled="{Binding CommBtn_IsEnabled}"
Style="{StaticResource MachCommandMessagePanel_Button}"/>
<Button Content="RESET"
Command="{Binding Reset_Command}"
IsEnabled="{Binding CommBtn_IsEnabled}"
Style="{StaticResource MachCommandMessagePanel_Button}"/>
<Button Content="SET POINT"
Command="{Binding SetPoint_Command}"
Visibility="{Binding SetPoint_Visibility}"
IsEnabled="{Binding CommBtn_IsEnabled}"
Style="{StaticResource MachCommandMessagePanel_Button}"/>
<Button Content="DELETE ALARMS"
Command="{Binding DeleteAlarms_Command}"
Visibility="{Binding DeleteAlarm_Visibility}"
IsEnabled="{Binding CommBtn_IsEnabled}"
Style="{StaticResource DeleteAlarms_Button}"/>
</WrapPanel>
</StackPanel>
</UserControl>