32 lines
1.4 KiB
XML
32 lines
1.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 ErrCycle}"/>
|
|
<TextBlock Text="{Binding Iso}"/>
|
|
<TextBlock Text="{Binding Message}"/>
|
|
<TextBlock Text="{Binding ErrSystem}"/>
|
|
<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="PAUSE"
|
|
Command="{Binding Stop_Command}"
|
|
Style="{StaticResource ToolBar_TextButton}"/>
|
|
<Button Content="END"
|
|
Command="{Binding Step_Command}"
|
|
Style="{StaticResource ToolBar_TextButton}"/>
|
|
<Button Content="SET POINT"
|
|
Command="{Binding SetPoint_Command}"
|
|
Style="{StaticResource ToolBar_TextButton}"/>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</UserControl>
|