Files
EgtCAM5/MachinePanel/MachinePanelV.xaml
T
Dario Sassi 61e18e64c8 EgtCAM5 :
- cancellati alcuni file non più usati
- cambiata altezza edit scelta macchina
- eliminato angolo di lato da svuotature
- in OperationListBoxItem IsSelected aggiunti controlli su esistenza altri oggetti richiamati.
2020-09-15 14:49:29 +00:00

36 lines
1.7 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">
<!--Combobox per selezionare la macchina corrente-->
<ComboBox ItemsSource="{Binding Path=MachinesList}" DisplayMemberPath="Name"
SelectedItem="{Binding Path=SelectedMachine}" SelectedValuePath="Name"
Height="22" Width="150" IsEnabled="{Binding MachineListIsEnabled}" Margin="2,0"/>
<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 SetUpCommand}"
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>