39 lines
1.5 KiB
XML
39 lines
1.5 KiB
XML
<EgtFloating:EgtFloatingPanel x:Class="OptimizePanelV"
|
|
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" Style="{StaticResource ToolBar_EgtFloatingPanel}">
|
|
|
|
<ComboBox ItemsSource="{Binding PartTypeList}"
|
|
SelectedIndex="{Binding nSelPartType}"
|
|
Height="22"
|
|
Width="85"
|
|
Margin="5,0,2.5,0"/>
|
|
|
|
<ComboBox ItemsSource="{Binding OriginTypeList}"
|
|
SelectedIndex="{Binding nSelOriginType}"
|
|
Height="22"
|
|
Width="85"
|
|
Margin="2.5,0,5,0"/>
|
|
|
|
<Button Content="Ottimizza"
|
|
Width="70"
|
|
FontWeight="Light"
|
|
ToolTip="{Binding GetDistToolTip}"
|
|
Style="{StaticResource ToolBar_Button}"
|
|
Command="{Binding Optimize_Command}">
|
|
<!--<Image Source="/Resources/InstrumentPanel/Analyze.png" Stretch="Uniform"/>-->
|
|
</Button>
|
|
|
|
<Button Content="W"
|
|
FontSize="20"
|
|
FontWeight="Light"
|
|
ToolTip="{Binding GetDistToolTip}"
|
|
Style="{StaticResource ToolBar_Button}"
|
|
Command="{Binding Warehouse_Command}">
|
|
<!--<Image Source="/Resources/InstrumentPanel/Analyze.png" Stretch="Uniform"/>-->
|
|
</Button>
|
|
|
|
</EgtFloating:EgtFloatingPanel>
|