6e22857086
- Correzioni e migliorie varie
37 lines
1.4 KiB
XML
37 lines
1.4 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}"
|
|
SelectedItem="{Binding SelPartType}"
|
|
Height="22"
|
|
Width="85"
|
|
Margin="5,0,2.5,0"/>
|
|
|
|
<ComboBox ItemsSource="{Binding OriginTypeList}"
|
|
SelectedItem="{Binding SelOriginType}"
|
|
Height="22"
|
|
Width="85"
|
|
Margin="2.5,0,5,0"
|
|
Visibility="Collapsed"/>
|
|
|
|
<Button Content="{Binding Optimize_Msg}"
|
|
Width="70"
|
|
FontWeight="Light"
|
|
Style="{StaticResource ToolBar_Button}"
|
|
Command="{Binding Optimize_Command}"
|
|
IsEnabled="{Binding OptimizePanel_IsEnabled}">
|
|
<!--<Image Source="/Resources/InstrumentPanel/Analyze.png" Stretch="Uniform"/>-->
|
|
</Button>
|
|
|
|
<Button ToolTip="{Binding Warehouse_ToolTip}"
|
|
Style="{StaticResource ToolBar_Button}"
|
|
Command="{Binding Warehouse_Command}">
|
|
<Image Source="/Resources/OptimizePanel/Warehouse.png" Stretch="Uniform"/>
|
|
</Button>
|
|
|
|
</EgtFloating:EgtFloatingPanel>
|