34 lines
1.6 KiB
XML
34 lines
1.6 KiB
XML
<UserControl x:Class="PopUpViewPanelV"
|
|
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 ZoomInCommand}"
|
|
ToolTip="{Binding ZoomInToolTip}"
|
|
Style="{StaticResource GridViewPanelButton}">
|
|
<Image Source="/Resources/ViewPanel/ZoomIn.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding ZoomOutCommand}"
|
|
ToolTip="{Binding ZoomOutToolTip}"
|
|
Style="{StaticResource GridViewPanelButton}">
|
|
<Image Source="/Resources/ViewPanel/ZoomOut.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding IsoViewSECommand}"
|
|
ToolTip="{Binding LookFromIso_SEToolTip}"
|
|
Style="{StaticResource GridViewPanelButton}">
|
|
<Image Source="/Resources/ViewPanel/LookFromISO_SE.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding IsoViewNECommand}"
|
|
ToolTip="{Binding LookFromIso_NEToolTip}"
|
|
Style="{StaticResource GridViewPanelButton}">
|
|
<Image Source="/Resources/ViewPanel/LookFromISO_NE.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding IsoViewNWCommand}"
|
|
ToolTip="{Binding LookFromIso_NWToolTip}"
|
|
Style="{StaticResource GridViewPanelButton}">
|
|
<Image Source="/Resources/ViewPanel/LookFromISO_NW.png" Stretch="Uniform"/>
|
|
</Button>
|
|
</StackPanel>
|
|
|
|
</UserControl>
|