48 lines
2.4 KiB
XML
48 lines
2.4 KiB
XML
<StackPanel x:Class="OnlyProdRawPartManagerV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
DataContext="{StaticResource RawPartManagerVM}"
|
|
Style="{StaticResource OnlyProdRawPartManager_StackPanel}">
|
|
|
|
<Button Command="{Binding ProduceRawPart_Command}"
|
|
ToolTip="{Binding ProduceRawPart_ToolTip}"
|
|
IsEnabled="{Binding RawPartManagerIsEnabled}"
|
|
Visibility="{Binding ProduceRawPart_Visibility}"
|
|
Style="{StaticResource OnlyProdLeftPanel_Button}">
|
|
<Image Source="/Resources/TopPanel/ProduceRawPart.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding ProduceAllRawPart_Command}"
|
|
ToolTip="{Binding ProduceAllRawPart_ToolTip}"
|
|
IsEnabled="{Binding RawPartManagerIsEnabled}"
|
|
Visibility="{Binding ProduceRawPart_Visibility}"
|
|
Style="{StaticResource OnlyProdLeftPanel_Button}">
|
|
<Image Source="/Resources/TopPanel/ProduceAllRawPart.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding CopyRawPart_Command}"
|
|
ToolTip="{Binding CopyRawPart_ToolTip}"
|
|
IsEnabled="{Binding RawPartManagerIsEnabled}"
|
|
Style="{StaticResource OnlyProdLeftPanel_Button}">
|
|
<Image Source="/Resources/TopPanel/CopyRawPart.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding RemoveRawPart_Command}"
|
|
ToolTip="{Binding RemoveRawPart_ToolTip}"
|
|
IsEnabled="{Binding RawPartManagerIsEnabled}"
|
|
Style="{StaticResource OnlyProdLeftPanel_Button}">
|
|
<Image Source="/Resources/TopPanel/RemoveRawPart.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding RemoveAllRawPart_Command}"
|
|
ToolTip="{Binding RemoveAllRawPart_ToolTip}"
|
|
IsEnabled="{Binding RawPartManagerIsEnabled}"
|
|
Style="{StaticResource OnlyProdLeftPanel_Button}">
|
|
<Image Source="/Resources/TopPanel/RemoveAllRawPart.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding MovePartInRawPart_Command}"
|
|
ToolTip="{Binding MovePartInRawPart_ToolTip}"
|
|
IsEnabled="{Binding RawPartManagerIsEnabled}"
|
|
Visibility="{Binding MovePartInRawPart_Visibility}"
|
|
Style="{StaticResource OnlyProdLeftPanel_Button}">
|
|
<Image Source="/Resources/TopPanel/MovePartInRawPart.png" Stretch="Uniform"/>
|
|
</Button>
|
|
|
|
</StackPanel>
|