
提交了前面版本未add的文件
添加了千寻Rtk发送:NTRIP
添加缺号统计
添加GPS类型统计
限制小武内蒙地区部分地区使用(相关代码已注释)
This reverts commit 725c4b6d71
.
62 lines
3.2 KiB
XML
62 lines
3.2 KiB
XML
<UserControl x:Class="Plane.FormationCreator.Views.CopterGroupsView"
|
|
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"
|
|
BorderThickness="1"
|
|
Background="#FF2D2D2D" Width="464" Height="300">
|
|
<UserControl.BorderBrush>
|
|
<SolidColorBrush Color="{DynamicResource {x:Static SystemColors.ActiveBorderColorKey}}"/>
|
|
</UserControl.BorderBrush>
|
|
<Grid Margin="5" >
|
|
<StackPanel Orientation="Vertical">
|
|
<Grid >
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<Label Margin="5,0" Content="分组设置" HorizontalAlignment="Left" />
|
|
<Label Margin="15,0" Grid.Column="1" Content="最后选中:" HorizontalAlignment="Left"/>
|
|
<Label Grid.Column="1" Content="{Binding GroupManager.LastSelectedGroup}" HorizontalAlignment="Right"/>
|
|
<Button Margin="5,0" Grid.Column="2" Content="添加分组" HorizontalAlignment="Right"
|
|
Command="{Binding Path=GroupManager.AddGroupsCommand}"/>
|
|
</Grid>
|
|
<Separator></Separator>
|
|
<ItemsControl
|
|
MinHeight="180"
|
|
MaxHeight="240"
|
|
ScrollViewer.VerticalScrollBarVisibility="Visible"
|
|
ScrollViewer.HorizontalScrollBarVisibility="Hidden"
|
|
ItemsSource="{Binding Path= GroupManager.copterGroups}">
|
|
<ItemsControl.Template>
|
|
<ControlTemplate>
|
|
<ScrollViewer x:Name="ScrollViewer" Padding="{TemplateBinding Padding}">
|
|
<ItemsPresenter />
|
|
</ScrollViewer>
|
|
</ControlTemplate>
|
|
</ItemsControl.Template>
|
|
<ItemsControl.ItemsPanel>
|
|
<ItemsPanelTemplate>
|
|
<StackPanel Orientation="Vertical" />
|
|
</ItemsPanelTemplate>
|
|
</ItemsControl.ItemsPanel>
|
|
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBox Width="95" Text="{Binding groupName,UpdateSourceTrigger=PropertyChanged}"/>
|
|
<Button Margin="20,0,0,0" Width="90" Content="删除" Command="{Binding RemoveGroupCommand}"/>
|
|
<Button Margin="20,0,0,0" Width="90" Content="设置" Command="{Binding SetGroupCoptersCommand}"/>
|
|
<Button Margin="20,0,0,0" Width="90" Content="选中" Command="{Binding SelectCoptersCommand}"/>
|
|
</StackPanel>
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
|
|
</StackPanel>
|
|
</Grid>
|
|
</UserControl>
|