schangxiang@126.com
2025-11-04 f5ed29dc26c7cd952d56ec5721a2efc43cd25992
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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
using DataEntity.Share;
using DriverLib.Engine;
using System;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using XCommon.Log;
using XHandler.Controls;
using XHandler.View.MethodProperty;
using XImagingXhandler.XDAL;
using System.Linq;
using System.Runtime.Remoting.Channels;
 
namespace XHandler.View
{
    /// <summary>
    /// 控制移液枪类
    /// </summary>
    public partial class ControlPipetteGun : Window
    {
        #region 变量
        //private GetOrSetLattice getOrSetLattice = new GetOrSetLattice();
        //private UnloadTipsBll unloadTipsBll = new UnloadTipsBll();
        private UnloadTipsControl unloadTipsCtrl = new UnloadTipsControl(Shared.SoftwareInformation.currentculture);
        #endregion
 
        #region 构造函数
        /// <summary>
        /// 构造函数
        /// </summary>
        public ControlPipetteGun()
        {
            InitializeComponent();
        }
        #endregion
 
        #region 初始化
        /// <summary>
        /// 初始化
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void ControlPipetteGun_Loaded(object sender, RoutedEventArgs e)
        {
            try
            {
                //获取当前系统的非夹爪通道数量
                List<DeviceArm> deviceArmList = DeviceArmDB.GetDeviceArmFromdb(Shared.SoftwareInformation.software_information_id);
                var armListResult = deviceArmList.Where(x => x.arm_type != 0);
                if(armListResult.Any()&&armListResult.Count()==1)
                {
                    cbxArmZ.Visibility = Visibility.Collapsed;
                }
                else
                {
                    cbxArmZ.Visibility = Visibility.Visible;
                    cbxArmZ.ItemsSource= armListResult;
                    cbxArmZ.SelectedIndex = 0;
                }
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ControlPipetteGun_Loaded ERROR:", ex);
            }
        }
        #endregion
 
        #region 关闭窗口
        /// <summary>
        /// 关闭窗口
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnClose_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                this.Close();
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
        }
        #endregion
 
        #region X-轴偏移 TODO
        /// <summary>
        /// 往左偏移
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnLeft_Click(object sender, RoutedEventArgs e)
        {
            HxResult result = new HxResult();
            result.Result = ResultType.Success;
 
            try
            {
                // 判断输入值是否为空
                if (!ValueIsEmpty(tBoxXOffset, "请输入X-轴偏移量"))
                {
                    return;
                }
 
                this.Cursor = Cursors.Wait;
                result = MethodAction.Instance.XMoveLeft(Shared.ChanelArmId, float.Parse(tBoxXOffset.Text));
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
            finally
            {
                this.Cursor = Cursors.Arrow;
 
                // 判断结果是否失败
                ResultIsFail(result, "移液枪X轴向右偏移");
            }
        }
 
        /// <summary>
        /// 往右偏移
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnRight_Click(object sender, RoutedEventArgs e)
        {
            HxResult result = new HxResult();
            result.Result = ResultType.Success;
 
            try
            {
                // 判断输入值是否为空
                if (!ValueIsEmpty(tBoxXOffset, "请输入X-轴偏移量"))
                {
                    return;
                }
 
                this.Cursor = Cursors.Wait;
                result = MethodAction.Instance.XMoveRight(Shared.ChanelArmId, float.Parse(tBoxXOffset.Text));
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
            finally
            {
                this.Cursor = Cursors.Arrow;
 
                // 判断结果是否失败
                ResultIsFail(result, "移液枪X轴向左偏移");
            }
        }
        #endregion
 
        #region Y-轴偏移 TODO
        /// <summary>
        /// 往前偏移
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnFwd_Click(object sender, RoutedEventArgs e)
        {
            HxResult result = new HxResult();
            result.Result = ResultType.Success;
 
            try
            {
                // 判断输入值是否为空
                if (!ValueIsEmpty(tBoxYOffset, "请输入Y-轴偏移量"))
                {
                    return;
                }
 
                this.Cursor = Cursors.Wait;
                result = MethodAction.Instance.ADPYMoveForward(Shared.ChanelArmId, float.Parse(tBoxYOffset.Text));
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
            finally
            {
                this.Cursor = Cursors.Arrow;
 
                // 判断结果是否失败
                ResultIsFail(result, "移液枪Y轴向前偏移");
            }
        }
 
        /// <summary>
        /// 往后偏移
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnBack_Click(object sender, RoutedEventArgs e)
        {
            HxResult result = new HxResult();
            result.Result = ResultType.Success;
 
            try
            {
                // 判断输入值是否为空
                if (!ValueIsEmpty(tBoxYOffset, "请输入Y-轴偏移量"))
                {
                    return;
                }
 
                this.Cursor = Cursors.Wait;
                result = MethodAction.Instance.ADPYMoveBackward(Shared.ChanelArmId, float.Parse(tBoxYOffset.Text));
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
            finally
            {
                this.Cursor = Cursors.Arrow;
 
                // 判断结果是否失败
                ResultIsFail(result, "移液枪Y轴向后偏移");
            }
        }
        #endregion
 
        #region Z-轴偏移
        /// <summary>
        /// 向上偏移
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnUp_Click(object sender, RoutedEventArgs e)
        {
            HxResult result = new HxResult();
            result.Result = ResultType.Success;
 
            try
            {
                // 判断输入值是否为空
                if (!ValueIsEmpty(tBoxZOffset, "请输入Z-轴偏移量"))
                {
                    return;
                }
 
                Mouse.OverrideCursor = Cursors.Wait;
                if (cbxArmZ.Visibility == Visibility.Visible)
                {
                    DeviceArm deviceArm = (DeviceArm)cbxArmZ.SelectedItem;
                    string[] strArmProperty = deviceArm.device_arm_property.Trim().Split(',');
                    if (strArmProperty.Length > 0 && strArmProperty[0] != "")
                    {
                        if (deviceArm.channels >= 1 && strArmProperty.Length == 1)
                        {
                            Shared.ChannelsId = Array.ConvertAll<string, int>(strArmProperty, s => int.Parse(s));
                            Shared.ChannelCount = deviceArm.channels;
                        }
                        else
                        {
                            Array.ConvertAll<string, int>(strArmProperty, s => int.Parse(s));
                            Shared.ChannelsId = Array.ConvertAll<string, int>(strArmProperty, s => int.Parse(s));
                            Shared.ChannelCount = Shared.ChannelsId.Length;
                        }
                    }
                    result = MethodAction.Instance.ADPZUp(Convert.ToInt32(cbxArmZ.SelectedValue), float.Parse(tBoxZOffset.Text), Shared.ChannelsId);
                }
                else
                {
                    result = MethodAction.Instance.ADPZUp(Shared.ChanelArmId, float.Parse(tBoxZOffset.Text), Shared.ChannelsId);
                }
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
            finally
            {
                Mouse.OverrideCursor = null;
                
                // 判断结果是否失败
                ResultIsFail(result, "移液枪Z轴向上偏移");
            }
        }
 
        /// <summary>
        /// 向下偏移
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnDown_Click(object sender, RoutedEventArgs e)
        {
            HxResult result = new HxResult();
            result.Result = ResultType.Success;
 
            try
            {
                // 判断输入值是否为空
                if (!ValueIsEmpty(tBoxZOffset, "请输入Z-轴偏移量"))
                {
                    return;
                }
 
                Mouse.OverrideCursor = Cursors.Wait;
                if (cbxArmZ.Visibility == Visibility.Visible)
                {
                    DeviceArm deviceArm = (DeviceArm)cbxArmZ.SelectedItem;
                    string[] strArmProperty = deviceArm.device_arm_property.Trim().Split(',');
                    if (strArmProperty.Length > 0 && strArmProperty[0] != "")
                    {
                        if (deviceArm.channels >= 1 && strArmProperty.Length == 1)
                        {
                            Shared.ChannelsId = Array.ConvertAll<string, int>(strArmProperty, s => int.Parse(s));
                            Shared.ChannelCount = deviceArm.channels;
                        }
                        else
                        {
                            Array.ConvertAll<string, int>(strArmProperty, s => int.Parse(s));
                            Shared.ChannelsId = Array.ConvertAll<string, int>(strArmProperty, s => int.Parse(s));
                            Shared.ChannelCount = Shared.ChannelsId.Length;
                        }
                    }
                    result = MethodAction.Instance.ADPZDown(Convert.ToInt32(cbxArmZ.SelectedValue), float.Parse(tBoxZOffset.Text), Shared.ChannelsId);
                }
                else
                {
 
                    result = MethodAction.Instance.ADPZDown(Shared.ChanelArmId, float.Parse(tBoxZOffset.Text), Shared.ChannelsId);
                }
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
            finally
            {
                Mouse.OverrideCursor = null;
                // 判断结果是否失败
                ResultIsFail(result, "移液枪Z轴向下偏移");
            }
        }
        #endregion
 
        #region 移液量 TODO
        /// <summary>
        /// 吸液
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnAspirate_Click(object sender, RoutedEventArgs e)
        {
            HxResult result = new HxResult();
            result.Result = ResultType.Success;
 
            try
            {
                // 判断输入值是否为空
                if (!ValueIsEmpty(tBoxPipetteOffset, "请输入吸液量"))
                {
                    return;
                }
                this.Cursor = Cursors.Wait;
                result = MethodAction.Instance.ADPAspirate(Shared.ChanelArmId, float.Parse(tBoxPipetteOffset.Text), Shared.ChannelsId);
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
            finally
            {
                this.Cursor = Cursors.Arrow;
 
                // 判断结果是否失败
                ResultIsFail(result, "移液枪吸液");
            }
        }
 
        /// <summary>
        /// 加液
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnDispense_Click(object sender, RoutedEventArgs e)
        {
            HxResult result = new HxResult();
            result.Result = ResultType.Success;
 
            try
            {
                // 判断输入值是否为空
                if (!ValueIsEmpty(tBoxPipetteOffset, "请输入排液量"))
                {
                    return;
                }
                this.Cursor = Cursors.Wait;
                result = MethodAction.Instance.ADPDispense(Shared.ChanelArmId, float.Parse(tBoxPipetteOffset.Text), Shared.ChannelsId);
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
            finally
            {
                this.Cursor = Cursors.Arrow;
 
                // 判断结果是否失败
                ResultIsFail(result, "移液枪排液");
            }
        }
        #endregion
 
        #region Footer TODO
        /// <summary>
        /// 安装Tip
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnLoadTip_Click(object sender, RoutedEventArgs e)
        {
            HxResult result = new HxResult();
            result.Result = ResultType.Success;
            PlsToolTipWin plsToolTipWin = null;
            try
            {
                this.Cursor = Cursors.Arrow;
                System.Windows.Application.Current.Dispatcher.Invoke(new Action(() =>
                {
                    plsToolTipWin = new PlsToolTipWin("暂不支持!");
                    plsToolTipWin.WindowStartupLocation = WindowStartupLocation.CenterScreen;
                    plsToolTipWin.ShowDialog();
                }));
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
            finally
            {
            }
        }
 
        /// <summary>
        /// 卸载Tip
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnUnLoadTip_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                string strMsg = "卸载Tip成功!";
                PlsToolTipWin plsToolTipWin = null;
 
                // 卸载枪头
                Mouse.OverrideCursor = Cursors.Wait;
                string strMsgTip = unloadTipsCtrl.UnLoadTip();
                if (!string.IsNullOrEmpty(strMsgTip))
                {
                    strMsg = strMsgTip;
                }
 
                Mouse.OverrideCursor = null;
                System.Windows.Application.Current.Dispatcher.Invoke(new Action(() =>
                {
                    plsToolTipWin = new PlsToolTipWin(strMsg);
                    plsToolTipWin.btnCancel.Visibility = Visibility.Hidden;
                    plsToolTipWin.ShowDialog();
                }));
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
            finally
            {
                Mouse.OverrideCursor = null;
            }
        }
 
        /// <summary>
        /// 取消
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnCancel_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                this.Close();
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
        }
        #endregion
 
        #region 数据检查
        /// <summary>
        /// 只能输入正浮点数
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void tBoxPreviewTextInput(object sender, System.Windows.Input.TextCompositionEventArgs e)
        {
            TextBox textElem = (sender as TextBox);
            // 解决连续输入很多.
            if ((textElem.Text.StartsWith(".") ||
                string.IsNullOrWhiteSpace(textElem.Text) ||
                textElem.Text.Contains(".")) && e.Text == ".")
            {
                e.Handled = true;
                return;
            }
 
            // 禁止在0前面继续输入0
            int index = ((System.Windows.Controls.TextBox)e.Source).CaretIndex;
            if (textElem.Text.StartsWith("0.") && index == 0 && e.Text == "0")
            {
                e.Handled = true;
                return;
            }
 
            Regex re = new Regex("[^0-9.]+");
            e.Handled = re.IsMatch(e.Text);
        }
 
        /// <summary>
        /// 输入框失去焦点:限制一位小数
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void tBoxLostFocus(object sender, RoutedEventArgs e)
        {
            TextBox textElem = (sender as TextBox);
            if (textElem.Text.Length > 0)
            {
                textElem.Text = Math.Round(double.Parse(textElem.Text), 1).ToString();
            }
        }
 
        /// <summary>
        /// 禁用快捷指令
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void tBoxPreviewPreviewCanExecute(object sender, CanExecuteRoutedEventArgs e)
        {
            if (e.Command == ApplicationCommands.Copy ||
                   e.Command == ApplicationCommands.Cut ||
                   e.Command == ApplicationCommands.Paste)
            {
                e.CanExecute = false;
                e.Handled = true;
            }
        }
 
        /// <summary>
        /// 判断输入值是否为空
        /// </summary>
        /// <param name="tbox"></param>
        /// <param name="strMsg"></param>
        /// <returns></returns>
        private bool ValueIsEmpty(TextBox tbox, string strMsg)
        {
            if (string.IsNullOrEmpty(tbox.Text))
            {
                PlsToolTipWin plsToolTipWin = new PlsToolTipWin(strMsg);
                plsToolTipWin.btnCancel.Visibility = Visibility.Hidden;
                plsToolTipWin.ShowDialog();
                tbox.Focus();
                return false;
            }
 
            return true;
        }
 
        /// <summary>
        /// 判断结果是否失败
        /// </summary>
        /// <param name="result"></param>
        /// <param name="strMsg"></param>
        private void ResultIsFail(HxResult result, string strMsg)
        {
            if (result.Result != ResultType.Success)
            {
                System.Windows.Application.Current.Dispatcher.Invoke(new Action(() =>
                {
                    PlsToolTipWin plsToolTipWin = new PlsToolTipWin(string.Format("{0}失败:{1}", strMsg, result.AlarmInfo));
                    plsToolTipWin.btnCancel.Visibility = Visibility.Hidden;
                    plsToolTipWin.ShowDialog();
                }));
            }
        }
        #endregion
    }
}