75d05a8b31
- gestiti panel con Visibility - gestiti elementi grafici in ProjectV con ItemsControl - eliminato pannello Printing3d - aggiunta gestione Plugin - verifica bit per Plugin
38 lines
1.9 KiB
XML
38 lines
1.9 KiB
XML
<EgtFloating:EgtFloatingPanel x:Class="MachinePanelV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtFloating="clr-namespace:EgtWPFLib5.EgtFloating;assembly=EgtWPFLib5"
|
|
Visibility="{Binding MachinePanel_Visibility}">
|
|
|
|
<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>
|
|
|
|
</EgtFloating:EgtFloatingPanel>
|