천호석
2022-06-17 4de9ea98e13449174aa2cd09c8351fc0e978f44a
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
984
985
986
987
988
989
990
991
992
993
994
995
996
#pragma checksum "..\..\..\200.Custom_UI\Main_UserControl.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "93D8AE9C85DDCC55361AC0A61EAC1D08FCFD2025"
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:4.0.30319.42000
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
 
using SHARP_CLAS_UI.WPFControl;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Forms.Integration;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
 
 
namespace SHARP_CLAS_UI.WPFControl {
    
    
    /// <summary>
    /// Main_UserControl
    /// </summary>
    public partial class Main_UserControl : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
        
        
        #line 9 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas Canvas_Frame;
        
        #line default
        #line hidden
        
        
        #line 10 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas Frame;
        
        #line default
        #line hidden
        
        
        #line 44 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle GPS_Door;
        
        #line default
        #line hidden
        
        
        #line 45 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle UPS_Door;
        
        #line default
        #line hidden
        
        
        #line 47 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas Prop_Middle;
        
        #line default
        #line hidden
        
        
        #line 324 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas Module_Middle;
        
        #line default
        #line hidden
        
        
        #line 325 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle LD_Tray_In_Tray;
        
        #line default
        #line hidden
        
        
        #line 326 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle LD_Tray_Empty_Tray;
        
        #line default
        #line hidden
        
        
        #line 328 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle ULD_Tray_Empty_Tray;
        
        #line default
        #line hidden
        
        
        #line 329 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle ULD_Tray_Ng_Tray;
        
        #line default
        #line hidden
        
        
        #line 330 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle ULD_Tray_Ok_Tray;
        
        #line default
        #line hidden
        
        
        #line 332 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas LD_Tray_TR_X;
        
        #line default
        #line hidden
        
        
        #line 338 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle LD_Tray_TR;
        
        #line default
        #line hidden
        
        
        #line 345 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas ULD_Tray_TR_X;
        
        #line default
        #line hidden
        
        
        #line 351 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle ULD_Tray_TR;
        
        #line default
        #line hidden
        
        
        #line 358 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas Stage_Y_2;
        
        #line default
        #line hidden
        
        
        #line 364 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Ablation_Stage_2_1;
        
        #line default
        #line hidden
        
        
        #line 365 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Ablation_Stage_2_2;
        
        #line default
        #line hidden
        
        
        #line 367 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas Stage_Y_1;
        
        #line default
        #line hidden
        
        
        #line 373 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Ablation_Stage_1_1;
        
        #line default
        #line hidden
        
        
        #line 374 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Ablation_Stage_1_2;
        
        #line default
        #line hidden
        
        
        #line 376 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas Pre_Align_Stage_2;
        
        #line default
        #line hidden
        
        
        #line 382 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Pre_Align_2;
        
        #line default
        #line hidden
        
        
        #line 384 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas Pre_Align_Stage_1;
        
        #line default
        #line hidden
        
        
        #line 390 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Pre_Align_1;
        
        #line default
        #line hidden
        
        
        #line 393 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle LD_Reverse_Stage_1;
        
        #line default
        #line hidden
        
        
        #line 398 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle LD_Reverse_1;
        
        #line default
        #line hidden
        
        
        #line 401 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle LD_Reverse_Stage_2;
        
        #line default
        #line hidden
        
        
        #line 406 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle LD_Reverse_2;
        
        #line default
        #line hidden
        
        
        #line 408 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas AOI_Stage_1;
        
        #line default
        #line hidden
        
        
        #line 414 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle AOI_1;
        
        #line default
        #line hidden
        
        
        #line 416 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas AOI_Stage_2;
        
        #line default
        #line hidden
        
        
        #line 422 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle AOI_2;
        
        #line default
        #line hidden
        
        
        #line 425 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle ULD_Reverse_Stage_1;
        
        #line default
        #line hidden
        
        
        #line 430 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle ULD_Reverse_1;
        
        #line default
        #line hidden
        
        
        #line 433 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle ULD_Reverse_Stage_2;
        
        #line default
        #line hidden
        
        
        #line 438 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle ULD_Reverse_2;
        
        #line default
        #line hidden
        
        
        #line 440 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas LD_Handler_2_Y;
        
        #line default
        #line hidden
        
        
        #line 446 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas LD_Handler_2_X_1;
        
        #line default
        #line hidden
        
        
        #line 447 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle LD_Handler_2_1;
        
        #line default
        #line hidden
        
        
        #line 454 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle LD_Handler_2_2;
        
        #line default
        #line hidden
        
        
        #line 468 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas LD_Handler_2_X;
        
        #line default
        #line hidden
        
        
        #line 478 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas LD_Handler_1_Y;
        
        #line default
        #line hidden
        
        
        #line 484 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas LD_Handler_1_X_1;
        
        #line default
        #line hidden
        
        
        #line 485 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle LD_Handler_1_1;
        
        #line default
        #line hidden
        
        
        #line 492 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle LD_Handler_1_2;
        
        #line default
        #line hidden
        
        
        #line 505 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas LD_Handler_1_X;
        
        #line default
        #line hidden
        
        
        #line 516 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas ULD_Handler_2_Y;
        
        #line default
        #line hidden
        
        
        #line 522 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas ULD_Handler_2_X_1;
        
        #line default
        #line hidden
        
        
        #line 523 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle ULD_Handler_2_1;
        
        #line default
        #line hidden
        
        
        #line 530 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle ULD_Handler_2_2;
        
        #line default
        #line hidden
        
        
        #line 543 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas ULD_Handler_2_X;
        
        #line default
        #line hidden
        
        
        #line 553 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas ULD_Handler_1_Y;
        
        #line default
        #line hidden
        
        
        #line 559 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas ULD_Handler_1_X_1;
        
        #line default
        #line hidden
        
        
        #line 560 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle ULD_Handler_1_1;
        
        #line default
        #line hidden
        
        
        #line 584 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle ULD_Handler_1_2;
        
        #line default
        #line hidden
        
        
        #line 614 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas ULD_Handler_1_X;
        
        #line default
        #line hidden
        
        
        #line 629 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas ULD_Handler_1_Y_1;
        
        #line default
        #line hidden
        
        
        #line 637 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas Prop_Top;
        
        #line default
        #line hidden
        
        
        #line 638 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas Fine_Align_Body;
        
        #line default
        #line hidden
        
        
        #line 643 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Fine_Align;
        
        #line default
        #line hidden
        
        
        #line 649 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas Ablation_Body;
        
        #line default
        #line hidden
        
        
        #line 653 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas Ablation;
        
        #line default
        #line hidden
        
        
        #line 659 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Ellipse Laser;
        
        #line default
        #line hidden
        
        
        #line 671 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas Plasma_X;
        
        #line default
        #line hidden
        
        
        #line 676 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Ellipse Plasma;
        
        #line default
        #line hidden
        
        
        #line 692 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Controls.Canvas Module_Top;
        
        #line default
        #line hidden
        
        
        #line 693 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Door_1;
        
        #line default
        #line hidden
        
        
        #line 694 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Door_2;
        
        #line default
        #line hidden
        
        
        #line 695 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Door_3;
        
        #line default
        #line hidden
        
        
        #line 696 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Door_4;
        
        #line default
        #line hidden
        
        
        #line 697 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Door_5;
        
        #line default
        #line hidden
        
        
        #line 698 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Door_6;
        
        #line default
        #line hidden
        
        
        #line 699 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Door_7;
        
        #line default
        #line hidden
        
        
        #line 700 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Door_8;
        
        #line default
        #line hidden
        
        
        #line 701 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Door_9;
        
        #line default
        #line hidden
        
        
        #line 702 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Door_10;
        
        #line default
        #line hidden
        
        
        #line 703 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
        internal System.Windows.Shapes.Rectangle Auto_Mode;
        
        #line default
        #line hidden
        
        private bool _contentLoaded;
        
        /// <summary>
        /// InitializeComponent
        /// </summary>
        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
        [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
        public void InitializeComponent() {
            if (_contentLoaded) {
                return;
            }
            _contentLoaded = true;
            System.Uri resourceLocater = new System.Uri("/SHARP_CLAS_UI;component/200.custom_ui/main_usercontrol.xaml", System.UriKind.Relative);
            
            #line 1 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
            System.Windows.Application.LoadComponent(this, resourceLocater);
            
            #line default
            #line hidden
        }
        
        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
        [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
            switch (connectionId)
            {
            case 1:
            this.Canvas_Frame = ((System.Windows.Controls.Canvas)(target));
            return;
            case 2:
            this.Frame = ((System.Windows.Controls.Canvas)(target));
            return;
            case 3:
            this.GPS_Door = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 4:
            this.UPS_Door = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 5:
            this.Prop_Middle = ((System.Windows.Controls.Canvas)(target));
            return;
            case 6:
            this.Module_Middle = ((System.Windows.Controls.Canvas)(target));
            return;
            case 7:
            this.LD_Tray_In_Tray = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 8:
            this.LD_Tray_Empty_Tray = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 9:
            this.ULD_Tray_Empty_Tray = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 10:
            this.ULD_Tray_Ng_Tray = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 11:
            this.ULD_Tray_Ok_Tray = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 12:
            this.LD_Tray_TR_X = ((System.Windows.Controls.Canvas)(target));
            return;
            case 13:
            this.LD_Tray_TR = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 14:
            this.ULD_Tray_TR_X = ((System.Windows.Controls.Canvas)(target));
            return;
            case 15:
            this.ULD_Tray_TR = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 16:
            this.Stage_Y_2 = ((System.Windows.Controls.Canvas)(target));
            return;
            case 17:
            this.Ablation_Stage_2_1 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 18:
            this.Ablation_Stage_2_2 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 19:
            this.Stage_Y_1 = ((System.Windows.Controls.Canvas)(target));
            return;
            case 20:
            this.Ablation_Stage_1_1 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 21:
            this.Ablation_Stage_1_2 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 22:
            this.Pre_Align_Stage_2 = ((System.Windows.Controls.Canvas)(target));
            return;
            case 23:
            this.Pre_Align_2 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 24:
            this.Pre_Align_Stage_1 = ((System.Windows.Controls.Canvas)(target));
            return;
            case 25:
            this.Pre_Align_1 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 26:
            this.LD_Reverse_Stage_1 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 27:
            this.LD_Reverse_1 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 28:
            this.LD_Reverse_Stage_2 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 29:
            this.LD_Reverse_2 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 30:
            this.AOI_Stage_1 = ((System.Windows.Controls.Canvas)(target));
            return;
            case 31:
            this.AOI_1 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 32:
            this.AOI_Stage_2 = ((System.Windows.Controls.Canvas)(target));
            return;
            case 33:
            this.AOI_2 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 34:
            this.ULD_Reverse_Stage_1 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 35:
            this.ULD_Reverse_1 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 36:
            this.ULD_Reverse_Stage_2 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 37:
            this.ULD_Reverse_2 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 38:
            this.LD_Handler_2_Y = ((System.Windows.Controls.Canvas)(target));
            return;
            case 39:
            this.LD_Handler_2_X_1 = ((System.Windows.Controls.Canvas)(target));
            return;
            case 40:
            this.LD_Handler_2_1 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 41:
            this.LD_Handler_2_2 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 42:
            this.LD_Handler_2_X = ((System.Windows.Controls.Canvas)(target));
            return;
            case 43:
            this.LD_Handler_1_Y = ((System.Windows.Controls.Canvas)(target));
            return;
            case 44:
            this.LD_Handler_1_X_1 = ((System.Windows.Controls.Canvas)(target));
            return;
            case 45:
            this.LD_Handler_1_1 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 46:
            this.LD_Handler_1_2 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 47:
            this.LD_Handler_1_X = ((System.Windows.Controls.Canvas)(target));
            return;
            case 48:
            this.ULD_Handler_2_Y = ((System.Windows.Controls.Canvas)(target));
            return;
            case 49:
            this.ULD_Handler_2_X_1 = ((System.Windows.Controls.Canvas)(target));
            return;
            case 50:
            this.ULD_Handler_2_1 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 51:
            this.ULD_Handler_2_2 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 52:
            this.ULD_Handler_2_X = ((System.Windows.Controls.Canvas)(target));
            return;
            case 53:
            this.ULD_Handler_1_Y = ((System.Windows.Controls.Canvas)(target));
            return;
            case 54:
            this.ULD_Handler_1_X_1 = ((System.Windows.Controls.Canvas)(target));
            return;
            case 55:
            this.ULD_Handler_1_1 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 56:
            this.ULD_Handler_1_2 = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 57:
            this.ULD_Handler_1_X = ((System.Windows.Controls.Canvas)(target));
            return;
            case 58:
            this.ULD_Handler_1_Y_1 = ((System.Windows.Controls.Canvas)(target));
            return;
            case 59:
            this.Prop_Top = ((System.Windows.Controls.Canvas)(target));
            return;
            case 60:
            this.Fine_Align_Body = ((System.Windows.Controls.Canvas)(target));
            return;
            case 61:
            this.Fine_Align = ((System.Windows.Shapes.Rectangle)(target));
            return;
            case 62:
            this.Ablation_Body = ((System.Windows.Controls.Canvas)(target));
            return;
            case 63:
            this.Ablation = ((System.Windows.Controls.Canvas)(target));
            return;
            case 64:
            this.Laser = ((System.Windows.Shapes.Ellipse)(target));
            return;
            case 65:
            this.Plasma_X = ((System.Windows.Controls.Canvas)(target));
            return;
            case 66:
            this.Plasma = ((System.Windows.Shapes.Ellipse)(target));
            return;
            case 67:
            this.Module_Top = ((System.Windows.Controls.Canvas)(target));
            return;
            case 68:
            this.Door_1 = ((System.Windows.Shapes.Rectangle)(target));
            
            #line 693 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
            this.Door_1.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Door_MouseDown);
            
            #line default
            #line hidden
            return;
            case 69:
            this.Door_2 = ((System.Windows.Shapes.Rectangle)(target));
            
            #line 694 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
            this.Door_2.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Door_MouseDown);
            
            #line default
            #line hidden
            return;
            case 70:
            this.Door_3 = ((System.Windows.Shapes.Rectangle)(target));
            
            #line 695 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
            this.Door_3.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Door_MouseDown);
            
            #line default
            #line hidden
            return;
            case 71:
            this.Door_4 = ((System.Windows.Shapes.Rectangle)(target));
            
            #line 696 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
            this.Door_4.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Door_MouseDown);
            
            #line default
            #line hidden
            return;
            case 72:
            this.Door_5 = ((System.Windows.Shapes.Rectangle)(target));
            
            #line 697 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
            this.Door_5.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Door_MouseDown);
            
            #line default
            #line hidden
            return;
            case 73:
            this.Door_6 = ((System.Windows.Shapes.Rectangle)(target));
            
            #line 698 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
            this.Door_6.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Door_MouseDown);
            
            #line default
            #line hidden
            return;
            case 74:
            this.Door_7 = ((System.Windows.Shapes.Rectangle)(target));
            
            #line 699 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
            this.Door_7.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Door_MouseDown);
            
            #line default
            #line hidden
            return;
            case 75:
            this.Door_8 = ((System.Windows.Shapes.Rectangle)(target));
            
            #line 700 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
            this.Door_8.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Door_MouseDown);
            
            #line default
            #line hidden
            return;
            case 76:
            this.Door_9 = ((System.Windows.Shapes.Rectangle)(target));
            
            #line 701 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
            this.Door_9.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Door_MouseDown);
            
            #line default
            #line hidden
            return;
            case 77:
            this.Door_10 = ((System.Windows.Shapes.Rectangle)(target));
            
            #line 702 "..\..\..\200.Custom_UI\Main_UserControl.xaml"
            this.Door_10.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Door_MouseDown);
            
            #line default
            #line hidden
            return;
            case 78:
            this.Auto_Mode = ((System.Windows.Shapes.Rectangle)(target));
            return;
            }
            this._contentLoaded = true;
        }
    }
}