1ee8a8f0e0
-aggiunto svg
29 lines
1.2 KiB
XML
29 lines
1.2 KiB
XML
<Grid x:Class="ViewPanelProspectiveV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtStone3D="clr-namespace:EgtStone3D">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Button Command="{Binding OrthographicViewCommand}"
|
|
Style="{DynamicResource ViewPanel_Btn}">
|
|
<StackPanel Style="{StaticResource TopPanel_StackPanel}">
|
|
<Image Source="/Resources/ViewPanel/LookFromTOP.png"
|
|
Style="{StaticResource TopPanel_Image}"/>
|
|
<TextBlock Text="{Binding Orthographic_Msg}"
|
|
Style="{StaticResource TopPanel_TxBl}"/>
|
|
</StackPanel>
|
|
</Button>
|
|
<Button Grid.Column="1"
|
|
Command="{Binding ProspectiveViewCommand}"
|
|
Style="{DynamicResource ViewPanel_Btn}">
|
|
<StackPanel Style="{StaticResource TopPanel_StackPanel}">
|
|
<Image Source="/Resources/ViewPanel/LookFromBOTTOM.png"
|
|
Style="{StaticResource TopPanel_Image}"/>
|
|
<TextBlock Text="{Binding Prospective_Msg}"
|
|
Style="{StaticResource TopPanel_TxBl}"/>
|
|
</StackPanel>
|
|
</Button>
|
|
</Grid>
|