30 lines
1.8 KiB
XML
30 lines
1.8 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"
|
|
IsTopDockable="True" IsBottomDockable="False" IsLeftDockable="False"
|
|
IsRightDockable="False"
|
|
Background="{StaticResource Omag_Gray}" BorderBrush="{StaticResource Omag_Gray}"
|
|
IsEnabled="{Binding MachPanel_IsEnabled}">
|
|
|
|
<!--Combobox per selezionare la macchina corrente--><!--
|
|
<ComboBox ItemsSource="{Binding Path=MachineList}" DisplayMemberPath="Name"
|
|
SelectedItem="{Binding Path=SelectedMachine}" SelectedValuePath="Name"
|
|
Height="20" Width="150"/>-->
|
|
|
|
<Button Command="{Binding ToolDbCommand}" ToolTip="{Binding ToolDBToolTip}"
|
|
Style="{StaticResource ToolBar_TextButton}" Width="70" Content="{Binding ToolDBMsg}"/>
|
|
<Button Command="{Binding MachDbCommand}" ToolTip="{Binding MachiningDbToolTip}"
|
|
Style="{StaticResource ToolBar_TextButton}" Width="70" Content="{Binding MachiningDbMsg}"/>
|
|
<Button Command="{Binding SetUpCommand}" ToolTip="{Binding SetUpToolTip}"
|
|
Style="{StaticResource ToolBar_TextButton}" Width="70" Content="{Binding SetUpMsg}"
|
|
Background="{Binding SetUp_Background}"/>
|
|
<Button Command="{Binding WaterjetDbCommand}" ToolTip="{Binding WaterjetDbToolTip}"
|
|
Style="{StaticResource ToolBar_Button}" Width="70" Content="{Binding WaterjetDbMsg}" Visibility="{Binding WjDb_Visibility}"/>
|
|
<Button Command="{Binding MachOptionsCommand}" ToolTip="{Binding OptionsToolTip}">
|
|
<Image Source="/Resources/TopCommandBar/Options.png" Height="22" />
|
|
</Button>
|
|
|
|
|
|
</EgtFloating:EgtFloatingPanel>
|