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
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
using DataEntity.Rack;
using DataEntity.Share;
using DataRWDAL;
using DataRWDAL.Rack;
using HxEnum;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Windows;
using System.Windows.Controls;
using XCommon.Log;
using XCore;
using XHandler.Class;
using XHandler.Class.DataEx;
using XHandler.View.Dialog;
using XImagingXhandler.XDAL;
using XHandler.View.Consumables;
using System.Linq;
using XHandler.Controls;
using XCommon;
 
namespace XHandler.View.MethodProperty
{
    /// <summary>
    /// 夹爪转移
    /// </summary>
    public partial class GripTransportProperty : UserControl, IMethodProperty,IConsumableObserver
    {
        AspirateBll aspirateBll = new AspirateBll();
        GripTransportBll gripTransportBll = new GripTransportBll();
        //List<Lattice> lattices = new List<Lattice>();
        int curArmSelectedIndex = -1;
        int curSourceSelectedIndex = -1;
        int curDestinationSelectedIndex = -1;
        int curGripPositionSelectedIndex = -1;
        public MethodGripTransport methodGripTransport { get; set; }
        public MethodGripTransport currmethodGripTransport = null;
        public MethodEx method = null;
 
        #region 全局属性变量
        string isrun = "";
        string status = "";
        string name = "";
        string label = "";
        string armText = "";
        string armValue = "";
        string sourceLatticeText = "";
        string sourceLatticeValue = "";
        string destinationLatticeText = "";
        string destinationLatticeValue = "";
        string gripModelText = "";
        int gripModelValue = 0;
        string gripModelSetText = "";
        int pickPosMode = 0;
        string pickPosValue = "0";
 
        int gripModelSetValue = 0;
        string gripModelPosText = "";
        int gripModelPosValue = 0;
        string gripPickLabwareValue = "";
        string gripPickLabwareText = "";
 
        string gripPlaceLabwareValue = "";
        string gripPlaceLabwareText = "";
        int placePosMode = 0;
        string placePosValue = "0";
 
        int transportMode = 0;
        int transportCount = 0;
        int mark = 0;
        #endregion
 
        public GripTransportProperty()
        {
            InitializeComponent();
        }
 
        bool isConsumableUpdate = false;
        /// <summary>
        /// 耗材变更后,更新节点
        /// </summary>
        /// <param name="consumableManagement">耗材管理对象</param>
        public void ReceiveAndUpdate(ConsumableManagement consumableManagement)
        {
            isConsumableUpdate = true;
            // 抓取耗材
            ObservableCollection<Labware> dropdownNames = LabwareDB.GetLabware(2);
            cbGripPickObject.ItemsSource = dropdownNames;
            cbGripPickObject.SelectedValue = methodGripTransport.gripPickLabwareValue;
 
            // 放在耗材上
            isConsumableUpdate = true;
            ObservableCollection<Labware> pickDropdownNames = new ObservableCollection<Labware>(dropdownNames);
            pickDropdownNames.Insert(0, new Labware() { labware_id = "-1", labware_name = "空板位" });
            cbGripPlaceObject.ItemsSource = pickDropdownNames;
            cbGripPlaceObject.SelectedValue = methodGripTransport.gripPlaceLabwareValue;
 
        }
 
 
        public GripTransportProperty(MethodEx method)
        {
            InitializeComponent();
            mark = 0;
            curArmSelectedIndex = 0;
            curSourceSelectedIndex = 0;
            curDestinationSelectedIndex = 0;
 
            List<DeviceArm> deviceArms = DataModule.getInstance().GetDeviceArm();
            cbArm.ItemsSource = deviceArms;
            cbArm.SelectedIndex = 0;
            if (deviceArms.Count == 2) //只有一个臂的情况下默认选中该臂
                curArmSelectedIndex = 1;
            else if(deviceArms.Count == 3)
                curArmSelectedIndex = 2;
            else if (deviceArms.Count == 4)
                curArmSelectedIndex = 3;
            else if (deviceArms.Count == 5)
                curArmSelectedIndex = 2;
 
            List<GripTransportModel> gripTransportModels = gripTransportBll.GenerateGripTransportModel(Shared.SoftwareInformation.software_device_number);
            cbGripModel.ItemsSource = gripTransportModels;
            cbGripModelSet.ItemsSource = gripTransportModels;
 
            List<GripTransportModel> gripTransportModelPoss = gripTransportBll.GetGripTransportModelPoss();
            cbGripModelPos.ItemsSource = gripTransportModelPoss;
 
            // 抓取耗材
            ObservableCollection<Labware> dropdownNames = LabwareDB.GetLabware(2);
            cbGripPickObject.ItemsSource = dropdownNames;
 
            // 放在耗材上
            ObservableCollection<Labware> pickDropdownNames = new ObservableCollection<Labware>(dropdownNames);
            pickDropdownNames.Insert(0, new Labware() { labware_id = "-1", labware_name = "空板位" });
            cbGripPlaceObject.ItemsSource = pickDropdownNames;
 
            methodGripTransport = new MethodGripTransport();
            methodGripTransport.name = method.method_name;
            methodGripTransport.label = method.method_name;
            methodGripTransport.transportMode = 0;
            methodGripTransport.status = (method.isEnabled == true ? "enable" : "disable");
            methodGripTransport.strIndex = method.strIndex;
            
            this.method = method;
            if (method.tag != null)
            {
                methodGripTransport = (MethodGripTransport)method.tag;
 
                currmethodGripTransport = methodGripTransport;
                isrun = methodGripTransport.isrun;
                status = methodGripTransport.status;
                name = methodGripTransport.name;
                label = methodGripTransport.label;
                armText = methodGripTransport.armText;
                armValue = methodGripTransport.armValue;
                sourceLatticeText = methodGripTransport.srcPositionText;
                sourceLatticeValue = methodGripTransport.srcPositionValue;
                destinationLatticeText = methodGripTransport.desPositionText;
                destinationLatticeValue = methodGripTransport.desPositionValue;
                gripModelText = methodGripTransport.gripModelText;
                gripModelValue = methodGripTransport.gripModelValue;
                gripModelSetText = methodGripTransport.gripModelSetText;
                gripModelSetValue = methodGripTransport.gripModelSetValue;
                gripPickLabwareValue = methodGripTransport.gripPickLabwareValue;
                gripPickLabwareText = methodGripTransport.gripPickLabwareText;
                pickPosMode= methodGripTransport.pickPosMode;
                pickPosValue= methodGripTransport.pickPosValue;
                gripPlaceLabwareValue = methodGripTransport.gripPlaceLabwareValue;
                gripPlaceLabwareText = methodGripTransport.gripPlaceLabwareText;
                placePosMode= methodGripTransport.placePosMode;
                placePosValue = methodGripTransport.placePosValue;
 
                gripModelPosText = methodGripTransport.gripModelPosText;
                gripModelPosValue = methodGripTransport.gripModelPosValue;
                transportMode = methodGripTransport.transportMode;
                transportCount = methodGripTransport.transportCount;
            }
            this.DataContext = methodGripTransport;
            // 加载转运点位
            LoadGripPosition(Shared.ChanelArmId);
        }
 
        private void UserControl_Loaded(object sender, RoutedEventArgs e)
        {
            mark += 1;
            try
            {
                if (mark > 1)
                {
                    return;
                }
                if (!string.IsNullOrEmpty(armText))
                {
                    tbxCommandName.Text = name;
                    cbArm.SelectedValue = armValue;
                    cbSourceLattice.SelectedValue = sourceLatticeValue;
                    cbDestinationLattice.SelectedValue = destinationLatticeValue;
                    cbGripModel.SelectedValue = gripModelValue;
                    cbGripModelSet.SelectedValue = gripModelSetValue;
                    cbGripModelPos.SelectedValue = gripModelPosValue;
                    cbGripPickObject.SelectedValue = gripPickLabwareValue;
                    cbGripPlaceObject.SelectedValue = gripPlaceLabwareValue;
                    Labware pickLabware = LabwareDB.GetLabware(gripPickLabwareValue);
                    Labware placeLabware = LabwareDB.GetLabware(gripPlaceLabwareValue);
 
                    if (transportMode == 0)
                    {
                        rbAll.IsChecked = true;
                    }
                    else if (transportMode == 1)
                    {
                        rbExceptOne.IsChecked = true;
                    }
                    else if (transportMode == 2)
                    {
                        rbCount.IsChecked = true;
                        tbxlevel.Text = transportCount.ToString();
                    }
 
                    if(pickPosMode==0)
                    {
                        radioBtnBoard.IsChecked= true;
                    }
                    else if(pickPosMode==1)//行
                    {
                        radioBtnRow.IsChecked= true;
                        string resultWells = "";
                        for(int q=1;q<= pickLabware.number_column;q++)
                        {
                            resultWells += ComUtility.GetRowName(pickPosValue)+ q.ToString()+ ",";
                        }
                        resultWells = resultWells.Substring(0, resultWells.Length - 1);
                        PickwellPlate.Selection = resultWells;
                    }
                    else if(pickPosMode==2)//列
                    {
                        radioBtnColumn.IsChecked= true;
                        string resultWells = "";
                        for (int q = 0; q < pickLabware.number_row; q++)
                        {
                            resultWells += ComUtility.GetRowChar(q) + pickPosValue.ToString() + ",";
                        }
                        resultWells = resultWells.Substring(0, resultWells.Length - 1);
                        PickwellPlate.Selection = resultWells;
                    }
                    else if(pickPosMode==3)//孔
                    {
                        radioBtnWell.IsChecked= true;
                        PickwellPlate.Selection = pickPosValue;
                    }
 
                    if (placePosMode == 0)
                    {
                        radioBtnPlaceBoard.IsChecked = true;
                    }
                    else if (placePosMode == 1)//行
                    {
                        radioBtnPlaceRow.IsChecked = true;
                        string resultWells = "";
                        if (placeLabware != null)
                        {
                            for (int q = 1; q <=placeLabware.number_column; q++)
                            {
                                resultWells += ComUtility.GetRowName(placePosValue) + q.ToString() + ",";
                            }
                            resultWells = resultWells.Substring(0, resultWells.Length - 1);
                        }
                        PlacewellPlate.Selection = resultWells;
                    }
                    else if (placePosMode == 2)//列
                    {
                        radioBtnPlaceColumn.IsChecked = true;
                        string resultWells = "";
                        if (placeLabware != null)
                        {
                            for (int q = 0; q < placeLabware.number_row; q++)
                            {
                                resultWells += ComUtility.GetRowChar(q) + placePosValue.ToString() + ",";
                            }
                            resultWells = resultWells.Substring(0, resultWells.Length - 1);
                        }
                        PlacewellPlate.Selection = resultWells;
                    }
                    else if (placePosMode == 3)
                    {
                        radioBtnPlaceWell.IsChecked = true;
                        PlacewellPlate.Selection = placePosValue;
                    }
 
                    if (currmethodGripTransport != null)
                    {
                        methodGripTransport = currmethodGripTransport;
                    }
 
                    if (this.method != null)
                    {
                        this.method.method_Tipcontent = string.Format("从{0}到{1}", methodGripTransport.srcPositionText, methodGripTransport.desPositionText);
                    }
                }
                else
                {
                    Labware pickLabware = LabwareDB.GetLabware(gripPickLabwareValue);
                    Labware placeLabware = LabwareDB.GetLabware(gripPlaceLabwareValue);
                    cbArm.SelectedIndex = curArmSelectedIndex;
                    cbSourceLattice.SelectedIndex = curSourceSelectedIndex;
                    cbDestinationLattice.SelectedIndex = curDestinationSelectedIndex;
                    cbGripModel.SelectedIndex = curGripPositionSelectedIndex;
                    cbGripModelSet.SelectedIndex = curGripPositionSelectedIndex;
                    cbGripModelPos.SelectedIndex = curGripPositionSelectedIndex;
                    cbGripPickObject.SelectedIndex = curGripPositionSelectedIndex;
                    cbGripPlaceObject.SelectedIndex = 0;
 
                    if (methodGripTransport.transportMode == 0)
                        rbAll.IsChecked = true;
                    else if (methodGripTransport.transportMode == 1)
                        rbExceptOne.IsChecked = true;
                    else if (methodGripTransport.transportMode == 2)
                        rbCount.IsChecked = true;
 
                    if(methodGripTransport.pickPosMode==0)
                    {
                        radioBtnBoard.IsChecked = true;
                    }else if(methodGripTransport.pickPosMode==1)
                    {
                        radioBtnRow.IsChecked = true;
                        string resultWells = "";
                        for (int q = 1; q <= pickLabware.number_column; q++)
                        {
                            resultWells += ComUtility.GetRowName(pickPosValue) + q.ToString() + ",";
                        }
                        resultWells = resultWells.Substring(0, resultWells.Length - 1);
                        PickwellPlate.Selection = resultWells;
                    }
                    else if(methodGripTransport.pickPosMode==2)
                    {
                        radioBtnColumn.IsChecked = true;
                        string resultWells = "";
                        for (int q = 0; q < pickLabware.number_row; q++)
                        {
                            resultWells += ComUtility.GetRowChar(q) + pickPosValue.ToString() + ",";
                        }
                        resultWells = resultWells.Substring(0, resultWells.Length - 1);
                        PickwellPlate.Selection = resultWells;
                    }
                    else if(methodGripTransport.pickPosMode==3)
                    {
                        radioBtnWell.IsChecked = true;
                        PickwellPlate.Selection = pickPosValue;
                    }
 
                    if (methodGripTransport.placePosMode == 0)
                    {
                        radioBtnPlaceBoard.IsChecked = true;
                    }
                    else if (methodGripTransport.placePosMode == 1)
                    {
                        radioBtnPlaceRow.IsChecked = true;
                        string resultWells = "";
                        if (placeLabware != null)
                        {
                            for (int q = 1; q <= placeLabware.number_column; q++)
                            {
                                resultWells += ComUtility.GetRowName(placePosValue) + q.ToString() + ",";
                            }
                            resultWells = resultWells.Substring(0, resultWells.Length - 1);
                        }
                        PlacewellPlate.Selection = resultWells;
                    }
                    else if (methodGripTransport.placePosMode == 2)
                    {
                        radioBtnPlaceColumn.IsChecked = true;
                        string resultWells = "";
                        if (placeLabware != null)
                        {
                            for (int q = 0; q < placeLabware.number_row; q++)
                            {
                                resultWells += ComUtility.GetRowChar(q) + placePosValue.ToString() + ",";
                            }
                            resultWells = resultWells.Substring(0, resultWells.Length - 1);
                        }
                        PlacewellPlate.Selection = resultWells;
                    }
                    else if (methodGripTransport.placePosMode == 3)
                    {
                        radioBtnPlaceWell.IsChecked = true;
                        PlacewellPlate.Selection = placePosValue;
                    }
 
                    if (currmethodGripTransport != null)
                    {
                        methodGripTransport = currmethodGripTransport;
                    }
                    if (this.method != null)
                    {
                        this.method.method_Tipcontent = string.Format("从{0}到{1}", methodGripTransport.srcPositionText, methodGripTransport.desPositionText);
                    }
                }
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
        }
 
        private void cbArm_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            if (cbArm.SelectedIndex < 0)
            {
                return;
            }
 
            curArmSelectedIndex = cbArm.SelectedIndex;
            DeviceArm arm = (DeviceArm)cbArm.SelectedItem;
            if (methodGripTransport != null)
            {
                methodGripTransport.armText = arm.device_arm_name;
                methodGripTransport.armValue = arm.device_arm_id.ToString();
            }
        }
 
        public void SetTableName(string name, Labware labware)
        {
            //TextBox tb = Utilities.FindVisualChild<TextBox>(cbSourceLattice);
            //if (tb.IsFocused)
            //{
            //    Lattice l = lattices.Find(s => s.lattice_num == name);
            //    cbSourceLattice.SelectedItem = l;
            //}
            //else
            //{
            //    TextBox tb1 = Utilities.FindVisualChild<TextBox>(cbDestinationLattice);
            //    if (tb1.IsFocused)
            //    {
            //        Lattice l = lattices.Find(s => s.lattice_num == name);
            //        cbDestinationLattice.SelectedItem = l;
            //    }
            //}
 
        }
 
        private void cbSourceLattice_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            if (cbSourceLattice.SelectedIndex < 0 || mark == 0)
                return;
            curSourceSelectedIndex = cbSourceLattice.SelectedIndex;
 
            if (string.IsNullOrEmpty(methodGripTransport.armValue))
            {
                new MessageDialog(Properties.Resources.msgPlsSelectArm).ShowDialog();
            }
 
            if (cbSourceLattice.SelectedIndex >= 0)
            {
                GripTransportPosition gripPosition = cbSourceLattice.SelectedItem as GripTransportPosition;
                if (methodGripTransport != null)
                {
                    methodGripTransport.srcPositionText = gripPosition.position_name;
                    methodGripTransport.srcPositionValue = gripPosition.position_id;
                    methodGripTransport.srcPositionType = gripPosition.position_type;
                }
 
                if (this.method != null)
                {
                    this.method.method_Tipcontent = string.Format("从{0}到{1}", methodGripTransport.srcPositionText, methodGripTransport.desPositionText);
                }
            }
        }
 
        private void cbDestinationLattice_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            if (cbDestinationLattice.SelectedIndex < 0 || mark == 0)
                return;
            curDestinationSelectedIndex = cbDestinationLattice.SelectedIndex;
 
            if (string.IsNullOrEmpty(methodGripTransport.armValue))
            {
                new MessageDialog(Properties.Resources.msgPlsSelectArm).ShowDialog();
            }
 
            if (cbDestinationLattice.SelectedIndex >= 0)
            {
                GripTransportPosition gripPosition = cbDestinationLattice.SelectedItem as GripTransportPosition;
                if (methodGripTransport != null)
                {
                    methodGripTransport.desPositionText = gripPosition.position_name;
                    methodGripTransport.desPositionValue = gripPosition.position_id;
                    methodGripTransport.desPositionType = gripPosition.position_type;
                }
 
                if (this.method != null)
                {
                    this.method.method_Tipcontent = string.Format("从{0}到{1}", methodGripTransport.srcPositionText, methodGripTransport.desPositionText);
                }
            }
        }
 
        private void rbAll_Checked(object sender, RoutedEventArgs e)
        {
            if (rbAll.IsChecked == true)
            {
                if (methodGripTransport != null)
                {
                    methodGripTransport.transportMode = (int)GripTransportModeEnum.TransportAll;
                }
            }
        }
 
        private void rbExceptOne_Checked(object sender, RoutedEventArgs e)
        {
            if (rbExceptOne.IsChecked == true)
            {
                if (methodGripTransport != null)
                {
 
                    methodGripTransport.transportMode = (int)GripTransportModeEnum.TransportExceptOne;
                }
            }
        }
 
        private void rbCount_Checked(object sender, RoutedEventArgs e)
        {
            if (rbCount.IsChecked == true)
            {
                if (methodGripTransport != null)
                {
                    methodGripTransport.transportMode = (int)GripTransportModeEnum.TransportCount;
                }
            }
 
        }
 
        private void tbxCommandName_TextChanged(object sender, TextChangedEventArgs e)
        {
            try
            {
                if (methodGripTransport != null)
                {
                    methodGripTransport.name = tbxCommandName.Text;
                }
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
        }
 
        private void cbGripModel_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            try
            {
                GripTransportModel gripTransportModel = cbGripModel.SelectedItem as GripTransportModel;
                if (methodGripTransport != null)
                {
                    if (string.IsNullOrEmpty(methodGripTransport.armValue))
                    {
                        new MessageDialog(Properties.Resources.msgPlsSelectArm).ShowDialog();
                    }
 
                    methodGripTransport.gripModelText = gripTransportModel.model_name;
                    methodGripTransport.gripModelValue = Convert.ToInt32(gripTransportModel.model_id);
                }
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
        }
 
        private void tbxlevel_TextChanged(object sender, TextChangedEventArgs e)
        {
            try
            {
                if (methodGripTransport != null)
                {
                    methodGripTransport.transportCount = Convert.ToInt32(tbxlevel.Text);
                }
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
        }
 
        private void cbGripModelSet_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            try
            {
                GripTransportModel gripTransportModel = cbGripModelSet.SelectedItem as GripTransportModel;
                if (methodGripTransport != null)
                {
                    if (string.IsNullOrEmpty(methodGripTransport.armValue))
                    {
                        new MessageDialog(Properties.Resources.msgPlsSelectArm).ShowDialog();
                    }
 
                    methodGripTransport.gripModelSetText = gripTransportModel.model_name;
                    methodGripTransport.gripModelSetValue = Convert.ToInt32(gripTransportModel.model_id);
                }
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
        }
 
        private void cbGripModelPos_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            try
            {
                GripTransportModel gripTransportModel = cbGripModelPos.SelectedItem as GripTransportModel;
                if (methodGripTransport != null)
                {
                    methodGripTransport.gripModelPosText = gripTransportModel.model_name;
                    methodGripTransport.gripModelPosValue = Convert.ToInt32(gripTransportModel.model_id);
                }
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
        }
 
        /// <summary>
        /// 抓取耗材类型
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void cbGripPickObject_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            try
            {
                if (isConsumableUpdate)
                {
                    isConsumableUpdate = false;
                    return;
                }
                Labware gripTransportModel = cbGripPickObject.SelectedItem as Labware;
                if (methodGripTransport != null)
                {
                    if (string.IsNullOrEmpty(methodGripTransport.armValue))
                    {
                        new MessageDialog(Properties.Resources.msgPlsSelectArm).ShowDialog();
                    }
 
                    methodGripTransport.gripPickLabwareText = gripTransportModel.labware_name;
                    methodGripTransport.gripPickLabwareValue = gripTransportModel.labware_id;
 
                    PickwellPlate.Rows = gripTransportModel.number_row;
                    PickwellPlate.Columns = gripTransportModel.number_column;
                    PickwellPlate.labwareWellInfoList = gripTransportModel.labwareWellInfoList;
                    PickwellPlate.LabwareRealWidth = gripTransportModel.labware_length;
                    PickwellPlate.LabwareRealLength = gripTransportModel.labware_width;
                    PickwellPlate.DataContext = gripTransportModel;
                    PickwellPlate.Selection = "";
                }
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
        }
 
        #region 加载转运点位
        /// <summary>
        /// 加载转运点位
        /// </summary>
        /// <param name="armId"></param>
        private void LoadGripPosition(int armId)
        {
            List<GripTransportPosition> gripPositionList = new List<GripTransportPosition>();
 
            // 获取台面点位
            List<Lattice> lattices = aspirateBll.ProviderLatticeList(Shared.SoftwareInformation.software_device_number, armId);
            // 获取台面以外点位
            List<PositionModel> positons = PositionDB.GetList(Shared.SoftwareInformation.software_information_id);
 
            foreach (var lattice in lattices)
            {
                if (!lattice.lattice_num.Equals("请选择"))
                {
                    GripTransportPosition gripPosition = new GripTransportPosition();
                    gripPosition.position_id = lattice.lattice_id;
                    gripPosition.position_name = lattice.lattice_num;
                    gripPosition.position_type = EnumManagement.GetEnumValue(PositonTypeEnum.Desktop);
                    gripPositionList.Add(gripPosition);
                }
            }
 
            foreach (var positon in positons)
            {
                GripTransportPosition gripPosition = new GripTransportPosition();
                gripPosition.position_id = positon.id;
                gripPosition.position_name = positon.name;
                gripPosition.position_type = positon.type;
                gripPositionList.Add(gripPosition);
            }
 
            cbSourceLattice.ItemsSource = gripPositionList;
            cbDestinationLattice.ItemsSource = gripPositionList;
 
            cbSourceLattice.SelectedIndex = 0;
            cbDestinationLattice.SelectedIndex = 0;
        }
        #endregion
 
        private void cbGripPlaceObject_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            try
            {
                if(isConsumableUpdate)
                {
                    isConsumableUpdate = false;
                    return;
                }
                Labware gripTransportModel = cbGripPlaceObject.SelectedItem as Labware;
                if (methodGripTransport != null)
                {
                    if (string.IsNullOrEmpty(methodGripTransport.armValue))
                    {
                        new MessageDialog(Properties.Resources.msgPlsSelectArm).ShowDialog();
                    }
 
                    methodGripTransport.gripPlaceLabwareText = gripTransportModel.labware_name;
                    methodGripTransport.gripPlaceLabwareValue = gripTransportModel.labware_id;
 
                    PlacewellPlate.Rows = gripTransportModel.number_row;
                    PlacewellPlate.Columns = gripTransportModel.number_column;
                    PlacewellPlate.labwareWellInfoList = gripTransportModel.labwareWellInfoList;
                    PlacewellPlate.LabwareRealWidth = gripTransportModel.labware_length;
                    PlacewellPlate.LabwareRealLength = gripTransportModel.labware_width;
                    PlacewellPlate.DataContext = gripTransportModel;
                    PlacewellPlate.Selection = "";
                }
            }
            catch (Exception ex)
            {
                LoggerHelper.ErrorLog("ERROR:", ex);
            }
        }
 
        private void PickwellPlate_MouseLeftButtonDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
        {
            //获取当前已选中的孔
            string wellsSelected = PickwellPlate.Selection;
            if (!string.IsNullOrEmpty(wellsSelected))
            {
                string[] wellArray = wellsSelected.Split(',');
                if (radioBtnRow.IsChecked==true)
                {
                    string rowName = wellArray[wellArray.Length - 1].Substring(0, 1);
                    int colTotal = PickwellPlate.Columns;
                    string resultWells = "";
                    for (int i = 1; i <= colTotal; i++)
                    {
                        resultWells += rowName + i.ToString() + ",";
                    }
 
                    if (!string.IsNullOrEmpty(resultWells))
                    {
                        resultWells = resultWells.Substring(0, (resultWells.Length) - 1);
                    }
                    PickwellPlate.Selection = resultWells;
                    if (methodGripTransport != null)
                    {
                        methodGripTransport.pickPosValue = ComUtility.GetRowIndexByRowChar(rowName);
                    }
 
                }
                else if (radioBtnColumn.IsChecked == true)
                {
                    string colName = wellArray[wellArray.Length - 1].Substring(1);
                    int rowTotal = PickwellPlate.Rows;
                    string resultWells = "";
                    for (int i = 0; i <= rowTotal; i++)
                    {
                        resultWells += ComUtility.GetRowChar(i) + colName + ",";
                    }
 
                    if (!string.IsNullOrEmpty(resultWells))
                    {
                        resultWells = resultWells.Substring(0, (resultWells.Length) - 1);
                    }
                    PickwellPlate.Selection = resultWells;
                    if (methodGripTransport != null)
                    {
                        methodGripTransport.pickPosValue = wellArray[wellArray.Length - 1].Substring(1);
                    }
                }
                else if (radioBtnWell.IsChecked == true)
                {
                    string resultWells = "";
                    resultWells = wellArray[wellArray.Length - 1];
                    PickwellPlate.Selection = resultWells;
                    if (methodGripTransport != null)
                    {
                        methodGripTransport.pickPosValue = resultWells;
                    }
                }
            }
        }
 
        #region 抓整板选定
        private void radioBtnBoard_Checked(object sender, RoutedEventArgs e)
        {
            if(radioBtnBoard.IsChecked == true)
            {
                gdPickSet.RowDefinitions[1].Height = new GridLength(0);
 
                if (methodGripTransport != null)
                {
                    methodGripTransport.pickPosMode = 0;
                }
            }
        }
        #endregion
 
        #region 按行抓选定
        private void radioBtnRow_Checked(object sender, RoutedEventArgs e)
        {
            if (radioBtnRow.IsChecked == true)
            {
                gdPickSet.RowDefinitions[1].Height = new GridLength(210);
                if (methodGripTransport != null)
                {
                    methodGripTransport.pickPosMode = 1;
                    PickwellPlate.Selection = "";
                }
            }
        }
        #endregion
 
        #region 按列抓选定
        private void radioBtnColumn_Checked(object sender, RoutedEventArgs e)
        {
            if (radioBtnColumn.IsChecked == true)
            {
                gdPickSet.RowDefinitions[1].Height = new GridLength(210);
                if (methodGripTransport != null)
                {
                    methodGripTransport.pickPosMode = 2;
                    PickwellPlate.Selection = "";
                }
            }
        }
        #endregion
 
        #region 按孔抓选定
        private void radioBtnWell_Checked(object sender, RoutedEventArgs e)
        {
            if (radioBtnWell.IsChecked == true)
            {
                gdPickSet.RowDefinitions[1].Height = new GridLength(210);
                if (methodGripTransport != null)
                {
                    methodGripTransport.pickPosMode = 3;
                    PickwellPlate.Selection = "";
                }
            }
        }
        #endregion
 
        private void PlacewellPlate_MouseLeftButtonDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
        {
            //获取当前已选中的孔
            string wellsSelected = PlacewellPlate.Selection;
            if (!string.IsNullOrEmpty(wellsSelected))
            {
                string[] wellArray = wellsSelected.Split(',');
                if (radioBtnPlaceRow.IsChecked == true)
                {
                    
                    string rowName = wellArray[wellArray.Length - 1].Substring(0, 1);
                    int colTotal = PlacewellPlate.Columns;
                    string resultWells = "";
                    for (int i = 1; i <= colTotal; i++)
                    {
                        resultWells += rowName + i.ToString() + ",";
                    }
 
                    if (!string.IsNullOrEmpty(resultWells))
                    {
                        resultWells = resultWells.Substring(0, (resultWells.Length) - 1);
                    }
                    PlacewellPlate.Selection = resultWells;
                    if (methodGripTransport != null)
                    {
                        methodGripTransport.placePosValue = ComUtility.GetRowIndexByRowChar(rowName);
                    }
                }
                else if (radioBtnPlaceColumn.IsChecked == true)
                {
                    string colName = wellArray[wellArray.Length - 1].Substring(1);
                    int rowTotal = PlacewellPlate.Rows;
                    string resultWells = "";
                    for (int i = 0; i <= rowTotal; i++)
                    {
                        resultWells += ComUtility.GetRowChar(i) + colName + ",";
                    }
 
                    if (!string.IsNullOrEmpty(resultWells))
                    {
                        resultWells = resultWells.Substring(0, (resultWells.Length) - 1);
                    }
                    PlacewellPlate.Selection = resultWells;
                    if (methodGripTransport != null)
                    {
                        methodGripTransport.placePosValue = wellArray[wellArray.Length - 1].Substring(1);
                    }
                }
                else if (radioBtnPlaceWell.IsChecked == true)
                {
                    string resultWells = "";
                    resultWells = wellArray[wellArray.Length - 1];
                    PlacewellPlate.Selection = resultWells;
                    if (methodGripTransport != null)
                    {
                        methodGripTransport.placePosValue = resultWells;
                    }
                }
            }
        }
 
        #region 放整板选定
        private void radioBtnPlaceBoard_Checked(object sender, RoutedEventArgs e)
        {
            if (radioBtnPlaceBoard.IsChecked == true)
            {
                gdPlaceSet.RowDefinitions[1].Height = new GridLength(0);
                if (methodGripTransport != null)
                {
                    methodGripTransport.placePosMode = 0;
                }
            }
        }
        #endregion
 
        #region 按行放选定
        private void radioBtnPlaceRow_Checked(object sender, RoutedEventArgs e)
        {
            if (radioBtnPlaceRow.IsChecked == true)
            {
                gdPlaceSet.RowDefinitions[1].Height = new GridLength(210);
                if (methodGripTransport != null)
                {
                    methodGripTransport.placePosMode = 1;
                    PlacewellPlate.Selection = "";
                }
            }
        }
        #endregion
 
        #region 按列放选定
        private void radioBtnPlaceColumn_Checked(object sender, RoutedEventArgs e)
        {
            if (radioBtnPlaceColumn.IsChecked == true)
            {
                gdPlaceSet.RowDefinitions[1].Height = new GridLength(210);
                if (methodGripTransport != null)
                {
                    methodGripTransport.placePosMode = 2;
                    PlacewellPlate.Selection = "";
                }
            }
        }
        #endregion
 
        #region 按孔抓选定
        private void radioBtnPlaceWell_Checked(object sender, RoutedEventArgs e)
        {
            if (radioBtnPlaceWell.IsChecked == true)
            {
                gdPlaceSet.RowDefinitions[1].Height = new GridLength(210);
 
                if (methodGripTransport != null)
                {
                    methodGripTransport.placePosMode = 3;
                    PlacewellPlate.Selection = "";
                }
            }
        }
        #endregion
    }
}