261e0f5949
-aggiunta menu su feature per selezione
44 lines
2.0 KiB
XML
44 lines
2.0 KiB
XML
<StackPanel x:Class="ViewPanelV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Style="{StaticResource OnlyProdBTLPartManager_StackPanel}">
|
|
|
|
<Button ToolTip="{Binding ZoomAllToolTip}"
|
|
Command="{Binding ZoomAllCommand}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/ZoomAll+.png" Stretch="Uniform"/>
|
|
</Button>
|
|
|
|
<Button ToolTip="{Binding LookFromTopToolTip}"
|
|
Command="{Binding TopViewCommand}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromTOP.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromFrontToolTip}"
|
|
Command="{Binding FrontViewCommand}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromFRONT.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromRightToolTip}"
|
|
Command="{Binding RightViewCommand}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromRIGHT.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromBackToolTip}"
|
|
Command="{Binding BackViewCommand}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromBACK.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromLeftToolTip}"
|
|
Command="{Binding LeftViewCommand}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromLEFT.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromIso_SWToolTip}"
|
|
Command="{Binding IsoViewSWCommand}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromISO_SW.png" Stretch="Uniform"/>
|
|
</Button>
|
|
|
|
</StackPanel>
|