20230724_MBJC_upperpc/Views/FirstPageAnchorControl.xaml

78 lines
4.0 KiB
Plaintext
Raw Normal View History

2023-12-18 09:31:28 +00:00
<UserControl x:Class="_20230724_MBJC_upperpc.Views.FirstPageAnchorControl"
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="500" d:DesignWidth="700" FontSize="10">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="5*"/>
<ColumnDefinition Width="2*"/>
</Grid.ColumnDefinitions>
<local:AnchorModel x:Name="AnchorModel" Grid.Column="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>