Files
EgtCAM5/MachinePanel/MachinePanelV.xaml
Emmanuele Sassi 36d153d31f EgtCAM5 :
- Correzione visibilita' programma su lancio ddf da riga di comando.
2021-04-06 16:10:42 +00:00

36 lines
1.6 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>