Files
EgtCAM5/MachinePanel/MachinePanelV.xaml
T
Emmanuele Sassi 7184c20469 EgtCAM5 :
- Disattivati i bottoni del MachinePanel quando si aprono i dettagli di una operazione.
2019-10-01 08:06:23 +00:00

32 lines
1.3 KiB
XML

<UserControl x:Class="MachinePanelV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel Orientation="Horizontal">
<Button Content="{Binding ToolDBMsg}"
Command="{Binding ToolDbCommand}"
IsEnabled="{Binding ToolDb_IsEnabled}"
Width="55"
ToolTip="{Binding ToolDBToolTip}"
Style="{StaticResource GridViewPanelButton}"/>
<Button Content="{Binding MachiningDbMsg}"
Command="{Binding MachDbCommand}"
IsEnabled="{Binding MachDb_IsEnabled}"
Width="55"
ToolTip="{Binding MachiningDbToolTip}"
Style="{StaticResource GridViewPanelButton}"/>
<Button Content="{Binding SetUpDbMsg}"
Command="{Binding SetUpDb_Command}"
IsEnabled="{Binding SetUpDb_IsEnabled}"
Width="55"
ToolTip="{Binding SetUpDbToolTip}"
Style="{StaticResource GridViewPanelButton}"/>
<Button Command="{Binding MachOptionsCommand}"
ToolTip="{Binding MachOptionsToolTip}">
<Image Source="/Resources/MachinePanel/MachineOptions.png"
Height="22" />
</Button>
</StackPanel>
</UserControl>