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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
using CommunityToolkit.Mvvm.Input;
using FLY.OBJComponents.IService;
using FLY.Thick.Base.Common;
using FLY.Thick.Base.IService;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Media;
using System.Windows.Threading;
using Unity;
namespace FLY.Thick.Base.UI
{
/// <summary>
/// UcMicroGage.xaml 的交互逻辑
/// </summary>
public partial class CtMicroGage : UserControl
{
CtMicroGageVm viewModel;
/// <summary>
///
/// </summary>
public CtMicroGage()
{
InitializeComponent();
viewModel = new CtMicroGageVm();
this.DataContext = viewModel;
if (System.ComponentModel.LicenseManager.UsageMode != System.ComponentModel.LicenseUsageMode.Runtime)
return;
this.Loaded += Page_Loaded;
this.Unloaded += Page_Unloaded;
}
private void Page_Unloaded(object sender, RoutedEventArgs e)
{
viewModel.DisposeBinding();
}
private void Page_Loaded(object sender, RoutedEventArgs e)
{
viewModel.SetBinding();
}
/// <summary>
/// 初始化
/// </summary>
/// <param name="container">容器</param>
[InjectionMethod]
public void Init(IUnityContainer container)
{
container.BuildUp(viewModel);
}
}
class CtMicroGageVm : INotifyPropertyChanged
{
#region 延时推送 MARKNO
const int MARKNO_UPDATEERROR = 1;
#endregion
public event PropertyChangedEventHandler PropertyChanged;
public double Thick { get; set; }
public int AD { get; set; }
public int ADMax { get; set; }
public bool IsIOShowNo { get; set; }
public int Position { get; set; }
public int PosLength { get; set; }
public double PosMm { get; set; }
public double Velocity { get; set; }
public double FilmVelocity { get; set; }
public string ControllerState { get; set; }
public UInt16 OStatus { get; set; }
public UInt16 IStatus { get; set; }
public bool IsError { get; set; }
/// <summary>
/// 异常消息
/// </summary>
public string ErrMsg { get; set; }
public RelayCommand StopCmd { get; private set; }
public RelayCommand ForwCmd { get; private set; }
public RelayCommand BackwCmd { get; private set; }
public RelayCommand OrgCmd { get; private set; }
DynArea dynArea;
ITDGageService gageService;
IInitParamService initParam;
IWarningSystem2Service warningSystem;
DispatcherTimer timer_error;
private int reason_list_index = -1;
Dictionary<object, List<Misc.BindingOperations.PropertyChangedEventContexts>> bindingConexts = new Dictionary<object, List<Misc.BindingOperations.PropertyChangedEventContexts>>();
/// <summary>
/// 数据已经绑定了
/// </summary>
bool isBinding;
public CtMicroGageVm()
{
StopCmd = new RelayCommand(() =>
{
gageService.StartP2(STARTP2_MODE.STOP);
});
OrgCmd = new RelayCommand(() =>
{
gageService.StartP2(STARTP2_MODE.ORG);
});
ForwCmd = new RelayCommand(() =>
{
gageService.StartP2(STARTP2_MODE.FORW);
});
BackwCmd = new RelayCommand(() =>
{
gageService.StartP2(STARTP2_MODE.BACKW);
});
}
/// <summary>
/// 初始化
/// </summary>
/// <param name="initParam"></param>
/// <param name="gageService"></param>
/// <param name="warningSystem"></param>
[InjectionMethod]
public void Init(
IInitParamService initParam,
ITDGageService gageService,
IWarningSystem2Service warningSystem)
{
this.gageService = gageService;
dynArea = gageService.DynArea;
this.initParam = initParam;
this.warningSystem = warningSystem;
timer_error = new DispatcherTimer();
timer_error.Interval = TimeSpan.FromSeconds(3);
//参数绑定
SetBinding();
}
/// <summary>
/// 参数绑定
/// </summary>
public void SetBinding()
{
if (isBinding)//已经绑定了
return;
isBinding = true;
//下面全部event保存在bindingConexts
Misc.BindingOperations.StartMarkdownEvents(bindingConexts);
Misc.BindingOperations.SetBinding(dynArea, nameof(dynArea.Thk), this, nameof(Thick));
Misc.BindingOperations.SetBinding(dynArea, nameof(dynArea.AD), this, nameof(AD));
Misc.BindingOperations.SetBinding(dynArea, nameof(dynArea.ADMax), this, nameof(ADMax));
Misc.BindingOperations.SetBinding(dynArea, nameof(dynArea.Position), this, nameof(Position));
Misc.BindingOperations.SetBinding(dynArea, nameof(dynArea.PosMm), this, nameof(PosMm));
Misc.BindingOperations.SetBinding(dynArea, nameof(dynArea.Velocity), this, nameof(Velocity));
Misc.BindingOperations.SetBinding(dynArea, nameof(dynArea.FilmVelocity), this, nameof(FilmVelocity));
Misc.BindingOperations.SetBinding(dynArea, nameof(dynArea.ControllerState), this, () =>
{
FLY.Thick.Base.UI.Converter.ControllerStateConverter converter = new FLY.Thick.Base.UI.Converter.ControllerStateConverter();
ControllerState = (string)converter.Convert(dynArea.ControllerState, typeof(string), null, null);
});
Misc.BindingOperations.SetBinding(this.initParam, nameof(initParam.PosLength), this, nameof(PosLength));
Misc.BindingOperations.SetBinding(dynArea, nameof(dynArea.IsIOShowNo), this, nameof(IsIOShowNo));
Misc.BindingOperations.SetBinding(dynArea, nameof(dynArea.OStatus), this, nameof(OStatus));
Misc.BindingOperations.SetBinding(dynArea, nameof(dynArea.IStatus), this, nameof(IStatus));
Misc.BindingOperations.SetBinding(gageService, nameof(FObjBase.FObjServiceClient.IsConnected), this, UpdateError);
//备份event完毕, 必须关闭记录
Misc.BindingOperations.StopMarkdownEvents();
//报警原因轮流显示
timer_error.Tick += Timer_error_Tick;
warningSystem.PropertyChanged += WarningSystem_PropertyChanged;
}
/// <summary>
/// 解除绑定
/// </summary>
public void DisposeBinding()
{
if (!isBinding)//已经解除绑定了
return;
isBinding = false;
Misc.BindingOperations.DisposeEventTargetObject(bindingConexts);
warningSystem.PropertyChanged -= WarningSystem_PropertyChanged;
timer_error.Stop();
timer_error.Tick -= Timer_error_Tick;
}
private void Timer_error_Tick(object sender, EventArgs e)
{
reason_list_index--;
if (reason_list_index < 0)
{
if (warningSystem.ReasonList != null && warningSystem.ReasonList.Count() > 0)
reason_list_index = warningSystem.ReasonList.Count() - 1;
else
reason_list_index = -1;
}
UpdateError();
}
private void WarningSystem_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
if (e.PropertyName == nameof(warningSystem.ReasonList))
{
if (warningSystem.ReasonList != null && warningSystem.ReasonList.Count() > 0)
reason_list_index = warningSystem.ReasonList.Count() - 1;
else
reason_list_index = -1;
UpdateError();
}
}
void UpdateError()
{
if (this.gageService is FObjBase.FObjServiceClient)
{
var client = this.gageService as FObjBase.FObjServiceClient;
string errMsg = (string)Application.Current.TryFindResource("str.CtMicroGage.ServerDisconnected");
if (errMsg == null) {
errMsg = "服务器连接断开";
}
if (!client.IsConnected)
{
ErrMsg = errMsg;
IsError = true;
reason_list_index = -1;
timer_error.Stop();
return;
}
}
if (warningSystem.ReasonList != null && warningSystem.ReasonList.Count() > 0)
{
if (reason_list_index >= warningSystem.ReasonList.Count())
reason_list_index = warningSystem.ReasonList.Count() - 1;
else if (reason_list_index < 0)
reason_list_index = 0;
ErrMsg = warningSystem.ReasonList[reason_list_index].Description;
IsError = true;
timer_error.Start();
}
else
{
IsError = false;
ErrMsg = "";
reason_list_index = -1;
timer_error.Stop();
}
}
}
class CtMircoGageVmUt : CtMicroGageVm
{
}
/// <summary>
///
/// </summary>
public class IO2BitColorConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
//ResourceDictionary resourceDictionary = new ResourceDictionary() { Source = new Uri("pack://application:,,,/FLY.Thick.Base.UI;component/CtMicroGage/CtMicroGageStyle.xaml") };
//var onColor = resourceDictionary["Brushes.IO.ON"] as SolidColorBrush;
//var offColor = resourceDictionary["Brushes.IO.OFF"] as SolidColorBrush;
//if (onColor == null || offColor == null)
//{
// onColor = new SolidColorBrush(Colors.WhiteSmoke);
// offColor = new SolidColorBrush(Colors.Black);
//}
var onColor = new SolidColorBrush(Colors.WhiteSmoke);
var offColor = new SolidColorBrush(Color.FromArgb(0xFF, 0x3B, 0x3B, 0x3B));
try
{
UInt16 io = (UInt16)value;
string str = (string)parameter;
int bitno = int.Parse(str);
if (Misc.MyBase.CHECKBIT(io, bitno))
return offColor;
else
return onColor;
}
catch
{
return offColor;
}
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}
public class IONumberConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
bool isIOShowNo = true;
int idx = 0;
if (value is bool)
{
isIOShowNo = (bool)value;
}
if (!(parameter is string))
{
return null;
}
if (!int.TryParse((string)parameter, out idx))
{
return null;
}
if (isIOShowNo)
{
return (idx + 1).ToString();
}
else
{
return (idx).ToString();
}
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
}