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
using GalaSoft.MvvmLight.Command;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FLY.Thick.Base.UI
{
interface ICtMicroGageVm:INotifyPropertyChanged
{
double Thick { get; set; }
int AD { get; set; }
int ADMax { get; set; }
int Position { get; set; }
int PosLength { get; set; }
double Posmm { get; set; }
double Velocity { get; set; }
string ControllerState { get; set; }
UInt16 OStatus { get; set; }
UInt16 IStatus { get; set; }
bool IsError { get; set; }
/// <summary>
/// 异常消息
/// </summary>
string ErrMsg { get; set; }
RelayCommand StopCmd { get; }
RelayCommand ForwCmd { get; }
RelayCommand BackwCmd { get; }
RelayCommand OrgCmd { get; }
}
}