1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
using CommunityToolkit.Mvvm.Input;
using FlyADBase;
using System;
using System.ComponentModel;
using System.Windows;
using Unity;
namespace Flyad7_WPF
{
/// <summary>
/// WdSetVelocity.xaml 的交互逻辑
/// </summary>
public partial class WdSetVelocity : Window
{
WdSetVelocityVm viewModel;
public WdSetVelocity()
{
InitializeComponent();
}
[InjectionMethod]
public void Init(FlyAD7 flyad)
{
viewModel = new WdSetVelocityVm();
viewModel.Init(flyad);
DataContext = this.viewModel;
}
}
public class WdSetVelocityVm : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
/// <summary>
/// runto 速度 pps
/// </summary>
public UInt32 Velocity { get; set; }
/// <summary>
/// 开始速度 pps
/// </summary>
public UInt32 SVelocity { get; set; }
/// <summary>
/// 加速时间 ms
/// </summary>
public UInt32 ATime { get; set; }
/// <summary>
/// 减速时间 ms
/// </summary>
public UInt32 DTime { get; set; }
/// <summary>
/// 归0 第1段速 pps
/// </summary>
public UInt32 HVelocity1 { get; set; }
/// <summary>
/// 归0 第2段速 pps
/// </summary>
public UInt32 HVelocity2 { get; set; }
public RelayCommand ApplyCmd { get; private set; }
FlyAD7 flyad;
public WdSetVelocityVm()
{
ApplyCmd = new RelayCommand(Apply);
}
public void Init(FlyAD7 flyad)
{
this.flyad = flyad;
Velocity = flyad.Velocity;
SVelocity = flyad.SVelocity;
ATime = flyad.ATime;
DTime = flyad.DTime;
HVelocity1 = flyad.HVelocity1;
HVelocity2 = flyad.HVelocity2;
}
private void Apply()
{
if (!flyad.IsConnected)
return;
flyad.SetPosParam(Velocity, SVelocity, ATime, DTime, HVelocity1, HVelocity2);
MessageBox.Show("设置完成");
}
}
}