44 lines
2.1 KiB
XML
44 lines
2.1 KiB
XML
<UserControl x:Class="ViewPanelV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<StackPanel Background="Transparent" Orientation="Horizontal">
|
|
<Button Command="{Binding ZoomAllCommand}"
|
|
ToolTip="{Binding ZoomAllToolTip}"
|
|
Style="{StaticResource GridViewPanelButton}">
|
|
<Image Source="/Resources/ViewPanel/ZoomAll.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding TopViewCommand}"
|
|
ToolTip="{Binding LookFromTopToolTip}"
|
|
Style="{StaticResource GridViewPanelButton}">
|
|
<Image Source="/Resources/ViewPanel/LookFromTOP.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding FrontViewCommand}"
|
|
ToolTip="{Binding LookFromFrontToolTip}"
|
|
Style="{StaticResource GridViewPanelButton}">
|
|
<Image Source="/Resources/ViewPanel/LookFromFRONT.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding RightViewCommand}"
|
|
ToolTip="{Binding LookFromRightToolTip}"
|
|
Style="{StaticResource GridViewPanelButton}">
|
|
<Image Source="/Resources/ViewPanel/LookFromRIGHT.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding BackViewCommand}"
|
|
ToolTip="{Binding LookFromBackToolTip}"
|
|
Style="{StaticResource GridViewPanelButton}">
|
|
<Image Source="/Resources/ViewPanel/LookFromBACK.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding LeftViewCommand}"
|
|
ToolTip="{Binding LookFromLeftToolTip}"
|
|
Style="{StaticResource GridViewPanelButton}">
|
|
<Image Source="/Resources/ViewPanel/LookFromLEFT.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding IsoViewSWCommand}"
|
|
ToolTip="{Binding LookFromIso_SWToolTip}"
|
|
Style="{StaticResource GridViewPanelButton}">
|
|
<Image Source="/Resources/ViewPanel/LookFromISO_SW.png" Stretch="Uniform"/>
|
|
</Button>
|
|
</StackPanel>
|
|
|
|
</UserControl>
|