41 lines
2.2 KiB
XML
41 lines
2.2 KiB
XML
<UserControl x:Class="JiangsuEarthquake.Views.UserControls.InitialView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:JiangsuEarthquake.Views.UserControls"
|
|
mc:Ignorable="d"
|
|
FontFamily="{StaticResource DigitalDisplay}"
|
|
d:DesignHeight="350" d:DesignWidth="450">
|
|
<Grid>
|
|
<Viewport3D>
|
|
<Viewport3D.Children>
|
|
<ModelVisual3D x:Name="Xrole"></ModelVisual3D>
|
|
<ModelVisual3D x:Name="Yrole"></ModelVisual3D>
|
|
<ModelVisual3D x:Name="Zrole"></ModelVisual3D>
|
|
<ModelVisual3D x:Name="Xarrow"></ModelVisual3D>
|
|
<ModelVisual3D x:Name="Yarrow"></ModelVisual3D>
|
|
<ModelVisual3D x:Name="Zarrow"></ModelVisual3D>
|
|
</Viewport3D.Children>
|
|
</Viewport3D>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Name="Rotate_Z" Text="Z(↑180.00°)" HorizontalAlignment="Left"
|
|
Margin="20,160,0,0" Background="Transparent"
|
|
VerticalAlignment="Top" Foreground="Red" FontSize="12"/>
|
|
<TextBlock Name="Rotate_Z_PY" FontSize="12" Foreground="Red"/>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Name="Rotate_Y" Text="Y(↑180.00°)" HorizontalAlignment="Left"
|
|
Margin="20,180,0,0" Background="Transparent"
|
|
VerticalAlignment="Top" Foreground="CadetBlue" FontSize="12"/>
|
|
<TextBlock Name="Rotate_Y_PY" FontSize="12" Foreground="Blue"/>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Name="Rotate_X" Text="X(↑180.00°)" HorizontalAlignment="Left"
|
|
Margin="217,310,0,0" Background="Transparent"
|
|
VerticalAlignment="Top" Foreground="Green" FontSize="12"/>
|
|
<TextBlock Name="Rotate_X_PY" FontSize="12" Foreground="Green"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</UserControl>
|