50 lines
2.3 KiB
XML
50 lines
2.3 KiB
XML
<Border x:Class="OnlyProdBTLPartManagerV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
DataContext="{StaticResource BTLPartManagerVM}"
|
|
CornerRadius="5"
|
|
BorderThickness="2"
|
|
BorderBrush="{StaticResource BeamWall_Teal}"
|
|
Background="{StaticResource BeamWall_FountainBlue}">
|
|
|
|
<StackPanel Orientation="Horizontal"
|
|
Style="{StaticResource OnlyProdBTLPartManager_StackPanel}">
|
|
<Button Command="{Binding CopyPart_Command}"
|
|
Click="ClosePopUp_Click"
|
|
ToolTip="{Binding CopyPart_ToolTip}"
|
|
IsEnabled="{Binding CopyPart_IsEnabled}"
|
|
Style="{StaticResource OnlyProdLeftPanel_Button}">
|
|
<Image Source="/Resources/LeftPanel/CopyPart.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding RemovePart_Command}"
|
|
Click="ClosePopUp_Click"
|
|
ToolTip="{Binding RemovePart_ToolTip}"
|
|
IsEnabled="{Binding RemovePart_IsEnabled}"
|
|
Style="{StaticResource OnlyProdLeftPanel_Button}">
|
|
<Image Source="/Resources/NewPage/Remove.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding Simulate_ToolTip}"
|
|
Click="ClosePopUp_Click"
|
|
Command="{Binding Simulate_Command}"
|
|
IsEnabled="{Binding Simulate_IsEnabled}"
|
|
Style="{StaticResource OnlyProdLeftPanel_Button}">
|
|
<Image Source="/Resources/CALCPanel/Simulate.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding Edit_ToolTip}"
|
|
Click="ClosePopUp_Click"
|
|
Command="{Binding Edit_Command}"
|
|
IsEnabled="{Binding Edit_IsEnabled}"
|
|
Style="{StaticResource OnlyProdLeftPanel_Button}">
|
|
<Image Source="/Resources/CALCPanel/Edit.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding ResetCalc_Command}"
|
|
Click="ClosePopUp_Click"
|
|
ToolTip="{Binding ResetCalc_ToolTip}"
|
|
IsEnabled="{Binding CALCPanel_IsEnabled}"
|
|
Style="{StaticResource OnlyProdLeftPanel_Button}">
|
|
<Image Source="/Resources/CALCPanel/ResetCalc.png" Stretch="Uniform"/>
|
|
</Button>
|
|
</StackPanel>
|
|
|
|
</Border>
|