66 lines
3.5 KiB
Plaintext
66 lines
3.5 KiB
Plaintext
|
|
<UserControl x:Class="_20230724_MBJC_upperpc.Views.FirstPageBuoyControl"
|
|||
|
|
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="15" Name="Control">
|
|||
|
|
<Grid>
|
|||
|
|
<Grid.ColumnDefinitions>
|
|||
|
|
<ColumnDefinition Width="5*"/>
|
|||
|
|
<ColumnDefinition Width="2*"/>
|
|||
|
|
</Grid.ColumnDefinitions>
|
|||
|
|
<local:BuoyModel x:Name="BuoyModel" 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/>
|
|||
|
|
</Grid.RowDefinitions>
|
|||
|
|
<StackPanel Grid.Row="0" VerticalAlignment="Center" Orientation="Horizontal" Margin="5,0,0,0">
|
|||
|
|
<TextBlock Text="基阵经度:"/>
|
|||
|
|
<TextBlock Name="TextJD" Text="119°27′31″"/>
|
|||
|
|
</StackPanel>
|
|||
|
|
<StackPanel Grid.Row="1" VerticalAlignment="Center" Orientation="Horizontal" Margin="5,0,0,0">
|
|||
|
|
<TextBlock Text="基阵纬度:"/>
|
|||
|
|
<TextBlock Name="TextWD" Text="27°30′45″"/>
|
|||
|
|
</StackPanel>
|
|||
|
|
<StackPanel Grid.Row="2" VerticalAlignment="Center" Orientation="Horizontal" Margin="5,0,0,0">
|
|||
|
|
<TextBlock Text="基阵深度:"/>
|
|||
|
|
<TextBlock Name="TextSD" Text="3米"/>
|
|||
|
|
</StackPanel>
|
|||
|
|
<StackPanel Grid.Row="3" VerticalAlignment="Center" Orientation="Horizontal" Margin="5,0,0,0">
|
|||
|
|
<TextBlock Text="基阵翻滚角:"/>
|
|||
|
|
<TextBlock Name="TextFGJ" Text="40°"/>
|
|||
|
|
</StackPanel>
|
|||
|
|
<StackPanel Grid.Row="4" VerticalAlignment="Center" Orientation="Horizontal" Margin="5,0,0,0">
|
|||
|
|
<TextBlock Text="基阵俯仰角:"/>
|
|||
|
|
<TextBlock Name="TextFYJ" Text="40°"/>
|
|||
|
|
</StackPanel>
|
|||
|
|
<StackPanel Grid.Row="5" VerticalAlignment="Center" Orientation="Horizontal" Margin="5,0,0,0">
|
|||
|
|
<TextBlock Text="基阵偏航角角:"/>
|
|||
|
|
<TextBlock Name="TextPHJ" Text="40°"/>
|
|||
|
|
</StackPanel>
|
|||
|
|
<TextBox Name="TextAlarm" Grid.Row="6" Grid.RowSpan="3" VerticalAlignment="Top" HorizontalAlignment="Left" Text="告警:当前基阵航向角偏移" Foreground="Red" Margin="5,5,0,0" MaxLines="5" TextWrapping="Wrap"/>
|
|||
|
|
</Grid>
|
|||
|
|
</Border>
|
|||
|
|
</Grid>
|
|||
|
|
</Grid>
|
|||
|
|
|
|||
|
|
</UserControl>
|