Plane.FormationCreator/Plane.FormationCreator/Views/CopterAttributeView.xaml
zxd 3cdecf8703 Revert "通信模块协议的添加和修改"
提交了前面版本未add的文件
添加了千寻Rtk发送:NTRIP
添加缺号统计
添加GPS类型统计
限制小武内蒙地区部分地区使用(相关代码已注释)
This reverts commit 725c4b6d71.
2019-07-01 21:51:09 +08:00

33 lines
1.5 KiB
XML

<UserControl x:Class="Plane.FormationCreator.Views.CopterAttributeView"
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:Plane.FormationCreator.Views"
mc:Ignorable="d"
d:DesignHeight="300"
BorderThickness="1"
Background="#FF2D2D2D" Width="464">
<UserControl.BorderBrush>
<SolidColorBrush Color="{DynamicResource {x:Static SystemColors.ActiveBorderColorKey}}"/>
</UserControl.BorderBrush>
<Grid Margin="5" >
<StackPanel Orientation="Vertical">
<Label Margin="5,0,0,0" Content="属性设置" VerticalAlignment="Center"/>
<Separator></Separator>
<StackPanel Margin="5,0,0,5" Orientation="Horizontal" HorizontalAlignment="Left">
<Label Margin="0" Content="摆放高度" ></Label>
<TextBox
Margin="30,0"
Width="80"
Text="{Binding SelectedCopter.GroundAlt,UpdateSourceTrigger=PropertyChanged}"/>
<Button
Width="120"
Content="应用到所选"
Command="{Binding ApplyGroundAltCommand}"/>
</StackPanel>
</StackPanel>
</Grid>
</UserControl>