51 lines
2.2 KiB
XML
51 lines
2.2 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 BTLPartManager_StackPanel}">
|
|
|
|
<Button ToolTip="{Binding ZoomAllToolTip}"
|
|
Command="{Binding ZoomAllCommand}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/ZoomAll+.png"
|
|
Style="{StaticResource BTLDataWnd_Image}"/>
|
|
</Button>
|
|
|
|
<Button ToolTip="{Binding LookFromTopToolTip}"
|
|
Command="{Binding TopViewCommand}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromTOP.png"
|
|
Style="{StaticResource BTLDataWnd_Image}"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromFrontToolTip}"
|
|
Command="{Binding FrontViewCommand}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromFRONT.png"
|
|
Style="{StaticResource BTLDataWnd_Image}"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromRightToolTip}"
|
|
Command="{Binding RightViewCommand}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromRIGHT.png"
|
|
Style="{StaticResource BTLDataWnd_Image}"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromBackToolTip}"
|
|
Command="{Binding BackViewCommand}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromBACK.png"
|
|
Style="{StaticResource BTLDataWnd_Image}"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromLeftToolTip}"
|
|
Command="{Binding LeftViewCommand}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromLEFT.png"
|
|
Style="{StaticResource BTLDataWnd_Image}"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromIso_SWToolTip}"
|
|
Command="{Binding IsoViewSWCommand}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromISO_SW.png"
|
|
Style="{StaticResource BTLDataWnd_Image}"/>
|
|
</Button>
|
|
|
|
</StackPanel>
|