20230724_MBJC_upperpc/Views/FirstPageSupportControl.xaml
2023-12-18 17:31:28 +08:00

78 lines
4.0 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<UserControl x:Class="_20230724_MBJC_upperpc.Views.FirstPageSupportControl"
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:_20230724_MBJC_upperpc.Views"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="5*"/>
<ColumnDefinition Width="2*"/>
</Grid.ColumnDefinitions>
<local:SupportModel x:Name="SupportModel" Grid.Column="0" Rotate_X="-90" Rotate_Y="90" Rotate_Z="0"/>
<Grid Grid.Column="1">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition Height="4*"/>
<RowDefinition/>
</Grid.RowDefinitions>
<Border Grid.Row="1" CornerRadius="10">
<Border.Background>
<SolidColorBrush Color="SkyBlue" Opacity="0.4"/>
</Border.Background>
<Grid Margin="0,10,0,0">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" VerticalAlignment="Center" Orientation="Horizontal" Margin="5,0,0,0">
<TextBlock Text="信标ID:"/>
<TextBlock Name="TextID" Text="1"/>
</StackPanel>
<StackPanel Grid.Row="1" VerticalAlignment="Center" Orientation="Horizontal" Margin="5,0,0,0">
<TextBlock Text="信标经度:"/>
<TextBlock Text="119°2731″"/>
</StackPanel>
<StackPanel Grid.Row="2" VerticalAlignment="Center" Orientation="Horizontal" Margin="5,0,0,0">
<TextBlock Text="信标纬度:"/>
<TextBlock Text="27°3045″"/>
</StackPanel>
<StackPanel Grid.Row="3" VerticalAlignment="Center" Orientation="Horizontal" Margin="5,0,0,0">
<TextBlock Text="信标深度:"/>
<TextBlock Text="9米"/>
</StackPanel>
<StackPanel Grid.Row="4" VerticalAlignment="Center" Orientation="Horizontal" Margin="5,0,0,0">
<TextBlock Text="信标横滚角:"/>
<TextBlock Text="90°"/>
</StackPanel>
<StackPanel Grid.Row="5" VerticalAlignment="Center" Orientation="Horizontal" Margin="5,0,0,0">
<TextBlock Text="信标俯仰角:"/>
<TextBlock Text="90°"/>
</StackPanel>
<StackPanel Grid.Row="6" VerticalAlignment="Center" Orientation="Horizontal" Margin="5,0,0,0">
<TextBlock Text="信标偏航角:"/>
<TextBlock Text="90°"/>
</StackPanel>
<StackPanel Grid.Row="7" VerticalAlignment="Center" Orientation="Horizontal" Margin="5,0,0,0">
<TextBlock Text="定位距离:"/>
<TextBlock Text="365米"/>
</StackPanel>
<StackPanel Grid.Row="8" VerticalAlignment="Center" Orientation="Horizontal" Margin="5,0,0,0">
<TextBlock Text="温度:"/>
<TextBlock Text="21℃"/>
</StackPanel>
</Grid>
</Border>
</Grid>
</Grid>
</UserControl>