Files
egtbeamwall/EgtBEAMWALL.ViewerOptimizer/OptimizePanel/OnlyProdOptimizePanelV.xaml
T
2024-05-15 16:38:48 +02:00

21 lines
901 B
XML

<StackPanel x:Class="OnlyProdOptimizePanelV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Style="{StaticResource OptmizePanel_StackPanel}">
<ComboBox ItemsSource="{Binding PartTypeList}"
SelectedItem="{Binding SelPartType}"
Style="{StaticResource OnlyProdOptimizePanel_ComboBox}"/>
<Button Content="{Binding Optimize_Msg}"
Command="{Binding Optimize_Command}"
IsEnabled="{Binding Optimize_IsEnabled}"
Style="{StaticResource ToolBarOptimize_Button}"/>
<Button ToolTip="{Binding Warehouse_ToolTip}"
Command="{Binding Warehouse_Command}"
Style="{StaticResource ToolBarWarehouse_Button}">
<Image Source="/Resources/OptimizePanel/Warehouse.png" Stretch="Uniform"/>
</Button>
</StackPanel>