
提交了前面版本未add的文件
添加了千寻Rtk发送:NTRIP
添加缺号统计
添加GPS类型统计
限制小武内蒙地区部分地区使用(相关代码已注释)
This reverts commit 725c4b6d71
.
32 lines
859 B
C#
32 lines
859 B
C#
using Microsoft.Practices.ServiceLocation;
|
|
using Plane.FormationCreator.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
|
|
namespace Plane.FormationCreator.Views
|
|
{
|
|
/// <summary>
|
|
/// CopterAttributeView.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class CopterAttributeView : UserControl
|
|
{
|
|
public CopterAttributeView()
|
|
{
|
|
InitializeComponent();
|
|
//this.DataContext = ServiceLocator.Current.GetInstance<CopterAttributeViewModel>();
|
|
}
|
|
}
|
|
}
|