Files
egtstone3d/ViewPanelProspective/ViewPanelProspectiveV.xaml
Demetrio Cassarino 1ee8a8f0e0 -aggiunto egtmsg
-aggiunto svg
2025-01-22 17:01:16 +01:00

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>