Files
egtbeamwall/EgtBEAMWALL.ViewerOptimizer/OptimizePanel/OptimizePanelV.xaml
T
Emmanuele Sassi 6e22857086 - Bloccati edit Part e Feature in Prod se barre in produzione
- Correzioni e migliorie varie
2021-09-22 14:49:08 +02:00

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>