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