FrmBoardInfo.Designer.cs
80.5 KB
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
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
namespace URSoldering.Client
{
partial class FrmBoardInfo
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmBoardInfo));
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.保存焊点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.picRight = new System.Windows.Forms.PictureBox();
this.picLeft = new System.Windows.Forms.PictureBox();
this.picUp = new System.Windows.Forms.PictureBox();
this.picDown = new System.Windows.Forms.PictureBox();
this.picZDel = new System.Windows.Forms.PictureBox();
this.picZAdd = new System.Windows.Forms.PictureBox();
this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.更新坐标ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.测试位置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.详情ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.删除ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.上升ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.下降ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.dataGridViewImageColumn1 = new System.Windows.Forms.DataGridViewImageColumn();
this.dataGridViewImageColumn2 = new System.Windows.Forms.DataGridViewImageColumn();
this.panel1 = new System.Windows.Forms.Panel();
this.dgvPoint = new System.Windows.Forms.DataGridView();
this.btnExit = new System.Windows.Forms.Button();
this.panPoint = new System.Windows.Forms.Panel();
this.panBoard = new System.Windows.Forms.Panel();
this.picBoard = new System.Windows.Forms.PictureBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label17 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.txtCode = new System.Windows.Forms.TextBox();
this.label10 = new System.Windows.Forms.Label();
this.chbIsSafe = new System.Windows.Forms.CheckBox();
this.label11 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.txtSendWireLength = new System.Windows.Forms.TextBox();
this.lblRobotRZ = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.lblRobotRY = new System.Windows.Forms.Label();
this.lblRobotRX = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.lblSpeed = new System.Windows.Forms.Label();
this.panel3 = new System.Windows.Forms.Panel();
this.btnPositionTest = new System.Windows.Forms.Button();
this.lblEpsonError = new System.Windows.Forms.Label();
this.lblMsg = new System.Windows.Forms.Label();
this.btnSavePoint = new System.Windows.Forms.Button();
this.btnStopDown = new System.Windows.Forms.Button();
this.btnGoHome = new System.Windows.Forms.Button();
this.label5 = new System.Windows.Forms.Label();
this.txtRobotZ = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.txtSpeed = new System.Windows.Forms.TextBox();
this.btnStopSend = new System.Windows.Forms.Button();
this.btnSendWire = new System.Windows.Forms.Button();
this.tckSpeed = new System.Windows.Forms.TrackBar();
this.txtRobotY = new System.Windows.Forms.Label();
this.btnWUp = new System.Windows.Forms.Button();
this.txtRobotX = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.dgvList = new System.Windows.Forms.DataGridView();
this.Column_pointNum = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_Name = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_pointType = new System.Windows.Forms.DataGridViewComboBoxColumn();
this.Column_X = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_Y = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_Z = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_RX = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_RY = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_RZ = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_preheatTemperature = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_preheatTemperatureMax = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_preheatTemperatureMin = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_preheatTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_weldTemperature = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_weldTemperatureMax = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_weldTemperatureMin = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_weldTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_startSendWireSpeed = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_startSendWireTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_sendWireSpeed = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_sendWireTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_isClear = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.Column_ClearTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column_getPosition = new System.Windows.Forms.DataGridViewLinkColumn();
this.Column_MoveTest = new System.Windows.Forms.DataGridViewLinkColumn();
this.Column_btnDetail = new System.Windows.Forms.DataGridViewLinkColumn();
this.Column_Del = new System.Windows.Forms.DataGridViewLinkColumn();
this.Column_Up = new System.Windows.Forms.DataGridViewImageColumn();
this.Column_Down = new System.Windows.Forms.DataGridViewImageColumn();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.cmbAoiFile = new System.Windows.Forms.ComboBox();
this.label9 = new System.Windows.Forms.Label();
this.txtBoardName = new System.Windows.Forms.TextBox();
this.label25 = new System.Windows.Forms.Label();
this.label24 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.btnSave = new System.Windows.Forms.Button();
this.txtBoardLength = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.txtBoardWidth = new System.Windows.Forms.TextBox();
this.btnOpenFile = new System.Windows.Forms.Button();
this.btnSStop = new System.Windows.Forms.Button();
this.btnWStop = new System.Windows.Forms.Button();
this.label14 = new System.Windows.Forms.Label();
this.Col_ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Col_X = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Col_Y = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Col_Z = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Col_RX = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Col_RY = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Col_RZ = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Col_Update = new System.Windows.Forms.DataGridViewLinkColumn();
this.Col_Move = new System.Windows.Forms.DataGridViewLinkColumn();
this.contextMenuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.picRight)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picLeft)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picUp)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picDown)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picZDel)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picZAdd)).BeginInit();
this.contextMenuStrip2.SuspendLayout();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvPoint)).BeginInit();
this.panBoard.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.picBoard)).BeginInit();
this.groupBox2.SuspendLayout();
this.panel3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.tckSpeed)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dgvList)).BeginInit();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.保存焊点ToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(125, 26);
//
// 保存焊点ToolStripMenuItem
//
this.保存焊点ToolStripMenuItem.Name = "保存焊点ToolStripMenuItem";
this.保存焊点ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
this.保存焊点ToolStripMenuItem.Text = "新增焊点";
this.保存焊点ToolStripMenuItem.Click += new System.EventHandler(this.保存焊点ToolStripMenuItem_Click);
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// picRight
//
this.picRight.BackColor = System.Drawing.Color.Transparent;
this.picRight.Image = ((System.Drawing.Image)(resources.GetObject("picRight.Image")));
this.picRight.Location = new System.Drawing.Point(151, 42);
this.picRight.Name = "picRight";
this.picRight.Size = new System.Drawing.Size(45, 45);
this.picRight.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.picRight.TabIndex = 326;
this.picRight.TabStop = false;
this.toolTip1.SetToolTip(this.picRight, "向右");
this.picRight.Click += new System.EventHandler(this.btnRight_Click);
//
// picLeft
//
this.picLeft.BackColor = System.Drawing.Color.Transparent;
this.picLeft.Image = ((System.Drawing.Image)(resources.GetObject("picLeft.Image")));
this.picLeft.Location = new System.Drawing.Point(73, 42);
this.picLeft.Name = "picLeft";
this.picLeft.Size = new System.Drawing.Size(45, 45);
this.picLeft.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.picLeft.TabIndex = 323;
this.picLeft.TabStop = false;
this.toolTip1.SetToolTip(this.picLeft, "向左");
this.picLeft.Click += new System.EventHandler(this.btnLeft_Click);
//
// picUp
//
this.picUp.BackColor = System.Drawing.Color.Transparent;
this.picUp.Image = ((System.Drawing.Image)(resources.GetObject("picUp.Image")));
this.picUp.Location = new System.Drawing.Point(111, 2);
this.picUp.Name = "picUp";
this.picUp.Size = new System.Drawing.Size(45, 45);
this.picUp.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.picUp.TabIndex = 325;
this.picUp.TabStop = false;
this.toolTip1.SetToolTip(this.picUp, "向前");
this.picUp.Click += new System.EventHandler(this.btnUp_Click);
//
// picDown
//
this.picDown.BackColor = System.Drawing.Color.Transparent;
this.picDown.Image = ((System.Drawing.Image)(resources.GetObject("picDown.Image")));
this.picDown.Location = new System.Drawing.Point(111, 82);
this.picDown.Name = "picDown";
this.picDown.Size = new System.Drawing.Size(45, 45);
this.picDown.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.picDown.TabIndex = 324;
this.picDown.TabStop = false;
this.toolTip1.SetToolTip(this.picDown, "向后");
this.picDown.Click += new System.EventHandler(this.btnDown_Click);
//
// picZDel
//
this.picZDel.BackColor = System.Drawing.Color.Transparent;
this.picZDel.Image = ((System.Drawing.Image)(resources.GetObject("picZDel.Image")));
this.picZDel.Location = new System.Drawing.Point(2, 65);
this.picZDel.Name = "picZDel";
this.picZDel.Size = new System.Drawing.Size(45, 45);
this.picZDel.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.picZDel.TabIndex = 322;
this.picZDel.TabStop = false;
this.toolTip1.SetToolTip(this.picZDel, "向下");
this.picZDel.Click += new System.EventHandler(this.btnZDel_Click);
//
// picZAdd
//
this.picZAdd.BackColor = System.Drawing.Color.Transparent;
this.picZAdd.Image = ((System.Drawing.Image)(resources.GetObject("picZAdd.Image")));
this.picZAdd.Location = new System.Drawing.Point(2, 20);
this.picZAdd.Name = "picZAdd";
this.picZAdd.Size = new System.Drawing.Size(45, 45);
this.picZAdd.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.picZAdd.TabIndex = 320;
this.picZAdd.TabStop = false;
this.toolTip1.SetToolTip(this.picZAdd, "向上");
this.picZAdd.Click += new System.EventHandler(this.btnZAdd_Click);
//
// contextMenuStrip2
//
this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.更新坐标ToolStripMenuItem,
this.测试位置ToolStripMenuItem,
this.详情ToolStripMenuItem,
this.删除ToolStripMenuItem,
this.上升ToolStripMenuItem,
this.下降ToolStripMenuItem});
this.contextMenuStrip2.Name = "contextMenuStrip2";
this.contextMenuStrip2.Size = new System.Drawing.Size(125, 136);
//
// 更新坐标ToolStripMenuItem
//
this.更新坐标ToolStripMenuItem.Name = "更新坐标ToolStripMenuItem";
this.更新坐标ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
this.更新坐标ToolStripMenuItem.Text = "更新坐标";
this.更新坐标ToolStripMenuItem.Click += new System.EventHandler(this.更新坐标ToolStripMenuItem_Click);
//
// 测试位置ToolStripMenuItem
//
this.测试位置ToolStripMenuItem.Name = "测试位置ToolStripMenuItem";
this.测试位置ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
this.测试位置ToolStripMenuItem.Text = "测试位置";
this.测试位置ToolStripMenuItem.Click += new System.EventHandler(this.测试位置ToolStripMenuItem_Click);
//
// 详情ToolStripMenuItem
//
this.详情ToolStripMenuItem.Name = "详情ToolStripMenuItem";
this.详情ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
this.详情ToolStripMenuItem.Text = "详情";
this.详情ToolStripMenuItem.Click += new System.EventHandler(this.详情ToolStripMenuItem_Click);
//
// 删除ToolStripMenuItem
//
this.删除ToolStripMenuItem.Name = "删除ToolStripMenuItem";
this.删除ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
this.删除ToolStripMenuItem.Text = "删除";
this.删除ToolStripMenuItem.Click += new System.EventHandler(this.删除ToolStripMenuItem_Click);
//
// 上升ToolStripMenuItem
//
this.上升ToolStripMenuItem.Name = "上升ToolStripMenuItem";
this.上升ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
this.上升ToolStripMenuItem.Text = "上升";
this.上升ToolStripMenuItem.Click += new System.EventHandler(this.上升ToolStripMenuItem_Click);
//
// 下降ToolStripMenuItem
//
this.下降ToolStripMenuItem.Name = "下降ToolStripMenuItem";
this.下降ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
this.下降ToolStripMenuItem.Text = "下降";
this.下降ToolStripMenuItem.Click += new System.EventHandler(this.下降ToolStripMenuItem_Click);
//
// dataGridViewImageColumn1
//
this.dataGridViewImageColumn1.HeaderText = "上升";
this.dataGridViewImageColumn1.Image = ((System.Drawing.Image)(resources.GetObject("dataGridViewImageColumn1.Image")));
this.dataGridViewImageColumn1.Name = "dataGridViewImageColumn1";
this.dataGridViewImageColumn1.Visible = false;
this.dataGridViewImageColumn1.Width = 50;
//
// dataGridViewImageColumn2
//
this.dataGridViewImageColumn2.HeaderText = "下降";
this.dataGridViewImageColumn2.Image = ((System.Drawing.Image)(resources.GetObject("dataGridViewImageColumn2.Image")));
this.dataGridViewImageColumn2.Name = "dataGridViewImageColumn2";
this.dataGridViewImageColumn2.Visible = false;
this.dataGridViewImageColumn2.Width = 50;
//
// panel1
//
this.panel1.AutoScroll = true;
this.panel1.Controls.Add(this.dgvPoint);
this.panel1.Controls.Add(this.btnExit);
this.panel1.Controls.Add(this.panPoint);
this.panel1.Controls.Add(this.panBoard);
this.panel1.Controls.Add(this.groupBox2);
this.panel1.Controls.Add(this.dgvList);
this.panel1.Controls.Add(this.groupBox1);
this.panel1.Controls.Add(this.btnOpenFile);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(1392, 634);
this.panel1.TabIndex = 0;
//
// dgvPoint
//
this.dgvPoint.AllowDrop = true;
this.dgvPoint.AllowUserToAddRows = false;
this.dgvPoint.AllowUserToDeleteRows = false;
this.dgvPoint.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dgvPoint.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvPoint.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Col_ID,
this.Col_X,
this.Col_Y,
this.Col_Z,
this.Col_RX,
this.Col_RY,
this.Col_RZ,
this.Col_Update,
this.Col_Move});
this.dgvPoint.ContextMenuStrip = this.contextMenuStrip2;
this.dgvPoint.Location = new System.Drawing.Point(1080, 85);
this.dgvPoint.MultiSelect = false;
this.dgvPoint.Name = "dgvPoint";
this.dgvPoint.RowHeadersWidth = 5;
this.dgvPoint.RowTemplate.Height = 23;
this.dgvPoint.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvPoint.Size = new System.Drawing.Size(303, 145);
this.dgvPoint.TabIndex = 323;
this.dgvPoint.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvPoint_CellContentClick);
//
// btnExit
//
this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnExit.FlatAppearance.BorderSize = 0;
this.btnExit.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnExit.Location = new System.Drawing.Point(1244, 22);
this.btnExit.Name = "btnExit";
this.btnExit.Size = new System.Drawing.Size(117, 41);
this.btnExit.TabIndex = 322;
this.btnExit.Text = "退出";
this.btnExit.UseVisualStyleBackColor = true;
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
//
// panPoint
//
this.panPoint.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.panPoint.Location = new System.Drawing.Point(12, 349);
this.panPoint.Name = "panPoint";
this.panPoint.Size = new System.Drawing.Size(1062, 267);
this.panPoint.TabIndex = 321;
//
// panBoard
//
this.panBoard.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.panBoard.Controls.Add(this.picBoard);
this.panBoard.Location = new System.Drawing.Point(1080, 236);
this.panBoard.Name = "panBoard";
this.panBoard.Size = new System.Drawing.Size(303, 395);
this.panBoard.TabIndex = 261;
//
// picBoard
//
this.picBoard.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.picBoard.Cursor = System.Windows.Forms.Cursors.Cross;
this.picBoard.Location = new System.Drawing.Point(0, 0);
this.picBoard.Name = "picBoard";
this.picBoard.Size = new System.Drawing.Size(284, 335);
this.picBoard.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.picBoard.TabIndex = 259;
this.picBoard.TabStop = false;
this.picBoard.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picBoard_MouseDown);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.label17);
this.groupBox2.Controls.Add(this.label15);
this.groupBox2.Controls.Add(this.txtCode);
this.groupBox2.Controls.Add(this.label10);
this.groupBox2.Controls.Add(this.chbIsSafe);
this.groupBox2.Controls.Add(this.label11);
this.groupBox2.Controls.Add(this.label6);
this.groupBox2.Controls.Add(this.txtSendWireLength);
this.groupBox2.Controls.Add(this.lblRobotRZ);
this.groupBox2.Controls.Add(this.label7);
this.groupBox2.Controls.Add(this.label8);
this.groupBox2.Controls.Add(this.lblRobotRY);
this.groupBox2.Controls.Add(this.lblRobotRX);
this.groupBox2.Controls.Add(this.label16);
this.groupBox2.Controls.Add(this.lblSpeed);
this.groupBox2.Controls.Add(this.panel3);
this.groupBox2.Controls.Add(this.btnPositionTest);
this.groupBox2.Controls.Add(this.lblEpsonError);
this.groupBox2.Controls.Add(this.lblMsg);
this.groupBox2.Controls.Add(this.btnSavePoint);
this.groupBox2.Controls.Add(this.btnStopDown);
this.groupBox2.Controls.Add(this.btnGoHome);
this.groupBox2.Controls.Add(this.label5);
this.groupBox2.Controls.Add(this.txtRobotZ);
this.groupBox2.Controls.Add(this.label13);
this.groupBox2.Controls.Add(this.label1);
this.groupBox2.Controls.Add(this.txtSpeed);
this.groupBox2.Controls.Add(this.btnStopSend);
this.groupBox2.Controls.Add(this.btnSendWire);
this.groupBox2.Controls.Add(this.tckSpeed);
this.groupBox2.Controls.Add(this.txtRobotY);
this.groupBox2.Controls.Add(this.btnWUp);
this.groupBox2.Controls.Add(this.txtRobotX);
this.groupBox2.Controls.Add(this.label12);
this.groupBox2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.groupBox2.Location = new System.Drawing.Point(12, 78);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(1062, 227);
this.groupBox2.TabIndex = 22;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "机器人实时坐标";
//
// label17
//
this.label17.AutoSize = true;
this.label17.Location = new System.Drawing.Point(748, 66);
this.label17.Name = "label17";
this.label17.Size = new System.Drawing.Size(30, 17);
this.label17.TabIndex = 330;
this.label17.Text = "mm";
//
// label15
//
this.label15.AutoSize = true;
this.label15.Location = new System.Drawing.Point(747, 35);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(41, 17);
this.label15.TabIndex = 329;
this.label15.Text = "mm/s";
//
// txtCode
//
this.txtCode.Location = new System.Drawing.Point(39, 155);
this.txtCode.Name = "txtCode";
this.txtCode.Size = new System.Drawing.Size(155, 23);
this.txtCode.TabIndex = 268;
this.txtCode.Visible = false;
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(5, 158);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(32, 17);
this.label10.TabIndex = 267;
this.label10.Text = "条码";
this.label10.Visible = false;
//
// chbIsSafe
//
this.chbIsSafe.AutoSize = true;
this.chbIsSafe.Location = new System.Drawing.Point(12, 184);
this.chbIsSafe.Name = "chbIsSafe";
this.chbIsSafe.Size = new System.Drawing.Size(243, 21);
this.chbIsSafe.TabIndex = 328;
this.chbIsSafe.Text = "没有人员靠近机器人,不再弹出确认提示";
this.chbIsSafe.UseVisualStyleBackColor = true;
this.chbIsSafe.CheckedChanged += new System.EventHandler(this.chbIsSafe_CheckedChanged);
//
// label11
//
this.label11.ForeColor = System.Drawing.Color.Red;
this.label11.Location = new System.Drawing.Point(12, 19);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(440, 23);
this.label11.TabIndex = 327;
this.label11.Text = "机器人连接中";
this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label6.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
this.label6.Location = new System.Drawing.Point(602, 66);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(68, 17);
this.label6.TabIndex = 326;
this.label6.Text = "送丝长度:";
this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// txtSendWireLength
//
this.txtSendWireLength.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.txtSendWireLength.Location = new System.Drawing.Point(675, 63);
this.txtSendWireLength.MaxLength = 6;
this.txtSendWireLength.Name = "txtSendWireLength";
this.txtSendWireLength.Size = new System.Drawing.Size(67, 23);
this.txtSendWireLength.TabIndex = 325;
this.txtSendWireLength.Text = "10";
//
// lblRobotRZ
//
this.lblRobotRZ.AutoSize = true;
this.lblRobotRZ.Location = new System.Drawing.Point(146, 134);
this.lblRobotRZ.Name = "lblRobotRZ";
this.lblRobotRZ.Size = new System.Drawing.Size(15, 17);
this.lblRobotRZ.TabIndex = 324;
this.lblRobotRZ.Text = "0";
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(110, 134);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(35, 17);
this.label7.TabIndex = 321;
this.label7.Text = "RZ:";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(110, 61);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(36, 17);
this.label8.TabIndex = 319;
this.label8.Text = "RX:";
//
// lblRobotRY
//
this.lblRobotRY.AutoSize = true;
this.lblRobotRY.Location = new System.Drawing.Point(146, 97);
this.lblRobotRY.Name = "lblRobotRY";
this.lblRobotRY.Size = new System.Drawing.Size(15, 17);
this.lblRobotRY.TabIndex = 323;
this.lblRobotRY.Text = "0";
//
// lblRobotRX
//
this.lblRobotRX.AutoSize = true;
this.lblRobotRX.Location = new System.Drawing.Point(146, 61);
this.lblRobotRX.Name = "lblRobotRX";
this.lblRobotRX.Size = new System.Drawing.Size(15, 17);
this.lblRobotRX.TabIndex = 322;
this.lblRobotRX.Text = "0";
//
// label16
//
this.label16.AutoSize = true;
this.label16.Location = new System.Drawing.Point(110, 97);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(35, 17);
this.label16.TabIndex = 320;
this.label16.Text = "RY:";
//
// lblSpeed
//
this.lblSpeed.AutoSize = true;
this.lblSpeed.Location = new System.Drawing.Point(548, 183);
this.lblSpeed.Name = "lblSpeed";
this.lblSpeed.Size = new System.Drawing.Size(95, 17);
this.lblSpeed.TabIndex = 315;
this.lblSpeed.Text = "步进值:0.5mm";
//
// panel3
//
this.panel3.BackColor = System.Drawing.SystemColors.Control;
this.panel3.Controls.Add(this.picRight);
this.panel3.Controls.Add(this.picLeft);
this.panel3.Controls.Add(this.picUp);
this.panel3.Controls.Add(this.picDown);
this.panel3.Controls.Add(this.picZDel);
this.panel3.Controls.Add(this.picZAdd);
this.panel3.Location = new System.Drawing.Point(298, 43);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(199, 129);
this.panel3.TabIndex = 259;
//
// btnPositionTest
//
this.btnPositionTest.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnPositionTest.FlatAppearance.BorderSize = 0;
this.btnPositionTest.Location = new System.Drawing.Point(947, 175);
this.btnPositionTest.Name = "btnPositionTest";
this.btnPositionTest.Size = new System.Drawing.Size(100, 37);
this.btnPositionTest.TabIndex = 318;
this.btnPositionTest.Text = "测试位置";
this.btnPositionTest.UseVisualStyleBackColor = true;
this.btnPositionTest.Click += new System.EventHandler(this.btnPositionTest_Click);
//
// lblEpsonError
//
this.lblEpsonError.AutoSize = true;
this.lblEpsonError.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblEpsonError.ForeColor = System.Drawing.Color.Red;
this.lblEpsonError.Location = new System.Drawing.Point(332, 144);
this.lblEpsonError.Name = "lblEpsonError";
this.lblEpsonError.Size = new System.Drawing.Size(0, 19);
this.lblEpsonError.TabIndex = 262;
//
// lblMsg
//
this.lblMsg.AutoSize = true;
this.lblMsg.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblMsg.ForeColor = System.Drawing.Color.Red;
this.lblMsg.Location = new System.Drawing.Point(657, 144);
this.lblMsg.Name = "lblMsg";
this.lblMsg.Size = new System.Drawing.Size(65, 19);
this.lblMsg.TabIndex = 260;
this.lblMsg.Text = "急停未开";
//
// btnSavePoint
//
this.btnSavePoint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnSavePoint.FlatAppearance.BorderSize = 0;
this.btnSavePoint.Location = new System.Drawing.Point(947, 136);
this.btnSavePoint.Name = "btnSavePoint";
this.btnSavePoint.Size = new System.Drawing.Size(100, 37);
this.btnSavePoint.TabIndex = 30;
this.btnSavePoint.Text = "新增焊点";
this.btnSavePoint.UseVisualStyleBackColor = true;
this.btnSavePoint.Click += new System.EventHandler(this.btnSavePoint_Click);
//
// btnStopDown
//
this.btnStopDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnStopDown.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnStopDown.Location = new System.Drawing.Point(947, 58);
this.btnStopDown.Name = "btnStopDown";
this.btnStopDown.Size = new System.Drawing.Size(100, 37);
this.btnStopDown.TabIndex = 317;
this.btnStopDown.Text = "送丝工作端";
this.btnStopDown.UseVisualStyleBackColor = true;
this.btnStopDown.Click += new System.EventHandler(this.btnStopDown_Click);
//
// btnGoHome
//
this.btnGoHome.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnGoHome.FlatAppearance.BorderSize = 0;
this.btnGoHome.Location = new System.Drawing.Point(947, 97);
this.btnGoHome.Name = "btnGoHome";
this.btnGoHome.Size = new System.Drawing.Size(100, 37);
this.btnGoHome.TabIndex = 35;
this.btnGoHome.Text = "回原点";
this.btnGoHome.UseVisualStyleBackColor = true;
this.btnGoHome.Click += new System.EventHandler(this.btnGoHome_Click);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label5.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
this.label5.Location = new System.Drawing.Point(602, 32);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(68, 17);
this.label5.TabIndex = 276;
this.label5.Text = "送丝速度:";
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// txtRobotZ
//
this.txtRobotZ.AutoSize = true;
this.txtRobotZ.Location = new System.Drawing.Point(36, 134);
this.txtRobotZ.Name = "txtRobotZ";
this.txtRobotZ.Size = new System.Drawing.Size(15, 17);
this.txtRobotZ.TabIndex = 26;
this.txtRobotZ.Text = "0";
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(12, 134);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(27, 17);
this.label13.TabIndex = 7;
this.label13.Text = "Z:";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 61);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(28, 17);
this.label1.TabIndex = 1;
this.label1.Text = "X:";
//
// txtSpeed
//
this.txtSpeed.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.txtSpeed.Location = new System.Drawing.Point(675, 29);
this.txtSpeed.MaxLength = 6;
this.txtSpeed.Name = "txtSpeed";
this.txtSpeed.Size = new System.Drawing.Size(66, 23);
this.txtSpeed.TabIndex = 275;
this.txtSpeed.Text = "10";
//
// btnStopSend
//
this.btnStopSend.Enabled = false;
this.btnStopSend.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnStopSend.Location = new System.Drawing.Point(697, 97);
this.btnStopSend.Name = "btnStopSend";
this.btnStopSend.Size = new System.Drawing.Size(80, 34);
this.btnStopSend.TabIndex = 274;
this.btnStopSend.Text = "停止送丝";
this.btnStopSend.UseVisualStyleBackColor = true;
this.btnStopSend.Click += new System.EventHandler(this.btnStopSend_Click);
//
// btnSendWire
//
this.btnSendWire.Enabled = false;
this.btnSendWire.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnSendWire.Location = new System.Drawing.Point(610, 97);
this.btnSendWire.Name = "btnSendWire";
this.btnSendWire.Size = new System.Drawing.Size(80, 34);
this.btnSendWire.TabIndex = 273;
this.btnSendWire.Text = "开始送丝";
this.btnSendWire.UseVisualStyleBackColor = true;
this.btnSendWire.Click += new System.EventHandler(this.btnSendWire_Click);
//
// tckSpeed
//
this.tckSpeed.LargeChange = 1;
this.tckSpeed.Location = new System.Drawing.Point(280, 176);
this.tckSpeed.Maximum = 6;
this.tckSpeed.Minimum = 1;
this.tckSpeed.Name = "tckSpeed";
this.tckSpeed.Size = new System.Drawing.Size(249, 45);
this.tckSpeed.TabIndex = 314;
this.tckSpeed.Value = 4;
this.tckSpeed.ValueChanged += new System.EventHandler(this.tckSpeed_ValueChanged);
//
// txtRobotY
//
this.txtRobotY.AutoSize = true;
this.txtRobotY.Location = new System.Drawing.Point(36, 97);
this.txtRobotY.Name = "txtRobotY";
this.txtRobotY.Size = new System.Drawing.Size(15, 17);
this.txtRobotY.TabIndex = 22;
this.txtRobotY.Text = "0";
//
// btnWUp
//
this.btnWUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnWUp.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnWUp.Location = new System.Drawing.Point(947, 19);
this.btnWUp.Name = "btnWUp";
this.btnWUp.Size = new System.Drawing.Size(100, 37);
this.btnWUp.TabIndex = 254;
this.btnWUp.Text = "烙铁上升";
this.btnWUp.UseVisualStyleBackColor = true;
this.btnWUp.Click += new System.EventHandler(this.btnWUp_Click);
//
// txtRobotX
//
this.txtRobotX.AutoSize = true;
this.txtRobotX.Location = new System.Drawing.Point(36, 61);
this.txtRobotX.Name = "txtRobotX";
this.txtRobotX.Size = new System.Drawing.Size(15, 17);
this.txtRobotX.TabIndex = 20;
this.txtRobotX.Text = "0";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(12, 97);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(27, 17);
this.label12.TabIndex = 3;
this.label12.Text = "Y:";
//
// dgvList
//
this.dgvList.AllowDrop = true;
this.dgvList.AllowUserToAddRows = false;
this.dgvList.AllowUserToDeleteRows = false;
this.dgvList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.dgvList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Column_pointNum,
this.Column_Name,
this.Column_pointType,
this.Column_X,
this.Column_Y,
this.Column_Z,
this.Column_RX,
this.Column_RY,
this.Column_RZ,
this.Column_preheatTemperature,
this.Column_preheatTemperatureMax,
this.Column_preheatTemperatureMin,
this.Column_preheatTime,
this.Column_weldTemperature,
this.Column_weldTemperatureMax,
this.Column_weldTemperatureMin,
this.Column_weldTime,
this.Column_startSendWireSpeed,
this.Column_startSendWireTime,
this.Column_sendWireSpeed,
this.Column_sendWireTime,
this.Column_isClear,
this.Column_ClearTime,
this.Column_getPosition,
this.Column_MoveTest,
this.Column_btnDetail,
this.Column_Del,
this.Column_Up,
this.Column_Down});
this.dgvList.ContextMenuStrip = this.contextMenuStrip2;
this.dgvList.Location = new System.Drawing.Point(12, 313);
this.dgvList.MultiSelect = false;
this.dgvList.Name = "dgvList";
this.dgvList.ReadOnly = true;
this.dgvList.RowHeadersWidth = 5;
this.dgvList.RowTemplate.Height = 23;
this.dgvList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvList.Size = new System.Drawing.Size(1062, 316);
this.dgvList.TabIndex = 31;
this.dgvList.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
this.dgvList.CellMouseDown += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvList_CellMouseDown);
this.dgvList.CellMouseMove += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvList_CellMouseMove);
this.dgvList.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvList_CellValueChanged);
this.dgvList.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgvList_RowPostPaint);
this.dgvList.RowsAdded += new System.Windows.Forms.DataGridViewRowsAddedEventHandler(this.dgvList_RowsAdded);
this.dgvList.DragDrop += new System.Windows.Forms.DragEventHandler(this.dgvList_DragDrop);
this.dgvList.DragEnter += new System.Windows.Forms.DragEventHandler(this.dgvList_DragEnter);
//
// Column_pointNum
//
this.Column_pointNum.DataPropertyName = "pointNum";
this.Column_pointNum.HeaderText = "ID";
this.Column_pointNum.Name = "Column_pointNum";
this.Column_pointNum.ReadOnly = true;
this.Column_pointNum.Width = 40;
//
// Column_Name
//
this.Column_Name.DataPropertyName = "pointName";
this.Column_Name.HeaderText = "名称";
this.Column_Name.Name = "Column_Name";
this.Column_Name.ReadOnly = true;
this.Column_Name.Width = 120;
//
// Column_pointType
//
this.Column_pointType.DataPropertyName = "pointType";
this.Column_pointType.HeaderText = "类型";
this.Column_pointType.Name = "Column_pointType";
this.Column_pointType.ReadOnly = true;
this.Column_pointType.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.Column_pointType.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
//
// Column_X
//
this.Column_X.DataPropertyName = "RobotX";
this.Column_X.HeaderText = "坐标X";
this.Column_X.Name = "Column_X";
this.Column_X.ReadOnly = true;
this.Column_X.Width = 75;
//
// Column_Y
//
this.Column_Y.DataPropertyName = "RobotY";
this.Column_Y.HeaderText = "坐标Y";
this.Column_Y.Name = "Column_Y";
this.Column_Y.ReadOnly = true;
this.Column_Y.Width = 75;
//
// Column_Z
//
this.Column_Z.DataPropertyName = "RobotZ";
this.Column_Z.HeaderText = "坐标Z";
this.Column_Z.Name = "Column_Z";
this.Column_Z.ReadOnly = true;
this.Column_Z.Width = 75;
//
// Column_RX
//
this.Column_RX.DataPropertyName = "RobotRX";
this.Column_RX.HeaderText = "RX";
this.Column_RX.Name = "Column_RX";
this.Column_RX.ReadOnly = true;
this.Column_RX.Visible = false;
this.Column_RX.Width = 75;
//
// Column_RY
//
this.Column_RY.DataPropertyName = "RobotRY";
this.Column_RY.HeaderText = "RY";
this.Column_RY.Name = "Column_RY";
this.Column_RY.ReadOnly = true;
this.Column_RY.Visible = false;
//
// Column_RZ
//
this.Column_RZ.DataPropertyName = "RobotRZ";
this.Column_RZ.HeaderText = "RZ";
this.Column_RZ.Name = "Column_RZ";
this.Column_RZ.ReadOnly = true;
this.Column_RZ.Visible = false;
//
// Column_preheatTemperature
//
this.Column_preheatTemperature.DataPropertyName = "preheatTemperature";
this.Column_preheatTemperature.HeaderText = "预热温度";
this.Column_preheatTemperature.Name = "Column_preheatTemperature";
this.Column_preheatTemperature.ReadOnly = true;
this.Column_preheatTemperature.Width = 80;
//
// Column_preheatTemperatureMax
//
this.Column_preheatTemperatureMax.DataPropertyName = "preheatTemperatureMax";
this.Column_preheatTemperatureMax.HeaderText = "预热上限";
this.Column_preheatTemperatureMax.Name = "Column_preheatTemperatureMax";
this.Column_preheatTemperatureMax.ReadOnly = true;
this.Column_preheatTemperatureMax.Visible = false;
this.Column_preheatTemperatureMax.Width = 80;
//
// Column_preheatTemperatureMin
//
this.Column_preheatTemperatureMin.DataPropertyName = "preheatTemperatureMin";
this.Column_preheatTemperatureMin.HeaderText = "预热下限";
this.Column_preheatTemperatureMin.Name = "Column_preheatTemperatureMin";
this.Column_preheatTemperatureMin.ReadOnly = true;
this.Column_preheatTemperatureMin.Visible = false;
this.Column_preheatTemperatureMin.Width = 80;
//
// Column_preheatTime
//
this.Column_preheatTime.DataPropertyName = "preheatTime";
this.Column_preheatTime.HeaderText = "预热时间";
this.Column_preheatTime.Name = "Column_preheatTime";
this.Column_preheatTime.ReadOnly = true;
this.Column_preheatTime.Visible = false;
this.Column_preheatTime.Width = 80;
//
// Column_weldTemperature
//
this.Column_weldTemperature.DataPropertyName = "weldTemperature";
this.Column_weldTemperature.HeaderText = "焊接温度";
this.Column_weldTemperature.Name = "Column_weldTemperature";
this.Column_weldTemperature.ReadOnly = true;
this.Column_weldTemperature.Width = 80;
//
// Column_weldTemperatureMax
//
this.Column_weldTemperatureMax.DataPropertyName = "weldTemperatureMax";
this.Column_weldTemperatureMax.HeaderText = "焊接上限";
this.Column_weldTemperatureMax.Name = "Column_weldTemperatureMax";
this.Column_weldTemperatureMax.ReadOnly = true;
this.Column_weldTemperatureMax.Visible = false;
this.Column_weldTemperatureMax.Width = 80;
//
// Column_weldTemperatureMin
//
this.Column_weldTemperatureMin.DataPropertyName = "weldTemperatureMin";
this.Column_weldTemperatureMin.HeaderText = "焊接下限";
this.Column_weldTemperatureMin.Name = "Column_weldTemperatureMin";
this.Column_weldTemperatureMin.ReadOnly = true;
this.Column_weldTemperatureMin.Visible = false;
this.Column_weldTemperatureMin.Width = 80;
//
// Column_weldTime
//
this.Column_weldTime.DataPropertyName = "weldTime";
this.Column_weldTime.HeaderText = "焊接时间";
this.Column_weldTime.Name = "Column_weldTime";
this.Column_weldTime.ReadOnly = true;
this.Column_weldTime.Visible = false;
this.Column_weldTime.Width = 75;
//
// Column_startSendWireSpeed
//
this.Column_startSendWireSpeed.DataPropertyName = "startSendWireSpeed";
this.Column_startSendWireSpeed.HeaderText = "起始送丝速度";
this.Column_startSendWireSpeed.Name = "Column_startSendWireSpeed";
this.Column_startSendWireSpeed.ReadOnly = true;
this.Column_startSendWireSpeed.Visible = false;
this.Column_startSendWireSpeed.Width = 120;
//
// Column_startSendWireTime
//
this.Column_startSendWireTime.DataPropertyName = "startSendWireTime";
this.Column_startSendWireTime.HeaderText = "起始送丝时间";
this.Column_startSendWireTime.Name = "Column_startSendWireTime";
this.Column_startSendWireTime.ReadOnly = true;
this.Column_startSendWireTime.Visible = false;
//
// Column_sendWireSpeed
//
this.Column_sendWireSpeed.DataPropertyName = "sendWireSpeed";
this.Column_sendWireSpeed.HeaderText = "送丝速度";
this.Column_sendWireSpeed.Name = "Column_sendWireSpeed";
this.Column_sendWireSpeed.ReadOnly = true;
this.Column_sendWireSpeed.Width = 80;
//
// Column_sendWireTime
//
this.Column_sendWireTime.DataPropertyName = "sendWireTime";
this.Column_sendWireTime.HeaderText = "送丝时间";
this.Column_sendWireTime.Name = "Column_sendWireTime";
this.Column_sendWireTime.ReadOnly = true;
this.Column_sendWireTime.Width = 80;
//
// Column_isClear
//
this.Column_isClear.DataPropertyName = "isNeedClear";
this.Column_isClear.HeaderText = "是否清洗";
this.Column_isClear.Name = "Column_isClear";
this.Column_isClear.ReadOnly = true;
this.Column_isClear.Visible = false;
//
// Column_ClearTime
//
this.Column_ClearTime.DataPropertyName = "ClearTime";
this.Column_ClearTime.HeaderText = "清洗时间";
this.Column_ClearTime.Name = "Column_ClearTime";
this.Column_ClearTime.ReadOnly = true;
this.Column_ClearTime.Visible = false;
//
// Column_getPosition
//
this.Column_getPosition.HeaderText = "更新坐标";
this.Column_getPosition.Name = "Column_getPosition";
this.Column_getPosition.ReadOnly = true;
this.Column_getPosition.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.Column_getPosition.Text = "更新坐标";
this.Column_getPosition.ToolTipText = "更新坐标";
this.Column_getPosition.UseColumnTextForLinkValue = true;
this.Column_getPosition.Width = 75;
//
// Column_MoveTest
//
this.Column_MoveTest.HeaderText = "测试位置";
this.Column_MoveTest.Name = "Column_MoveTest";
this.Column_MoveTest.ReadOnly = true;
this.Column_MoveTest.Text = "测试位置";
this.Column_MoveTest.ToolTipText = "测试位置";
this.Column_MoveTest.UseColumnTextForLinkValue = true;
this.Column_MoveTest.Width = 75;
//
// Column_btnDetail
//
this.Column_btnDetail.FillWeight = 60F;
this.Column_btnDetail.HeaderText = "详情";
this.Column_btnDetail.Name = "Column_btnDetail";
this.Column_btnDetail.ReadOnly = true;
this.Column_btnDetail.Text = "详情";
this.Column_btnDetail.UseColumnTextForLinkValue = true;
this.Column_btnDetail.Width = 55;
//
// Column_Del
//
this.Column_Del.FillWeight = 60F;
this.Column_Del.HeaderText = "删除";
this.Column_Del.Name = "Column_Del";
this.Column_Del.ReadOnly = true;
this.Column_Del.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.Column_Del.Text = "删除";
this.Column_Del.ToolTipText = "删除";
this.Column_Del.UseColumnTextForLinkValue = true;
this.Column_Del.Width = 55;
//
// Column_Up
//
this.Column_Up.HeaderText = "上升";
this.Column_Up.Image = ((System.Drawing.Image)(resources.GetObject("Column_Up.Image")));
this.Column_Up.Name = "Column_Up";
this.Column_Up.ReadOnly = true;
this.Column_Up.Visible = false;
this.Column_Up.Width = 50;
//
// Column_Down
//
this.Column_Down.HeaderText = "下降";
this.Column_Down.Image = ((System.Drawing.Image)(resources.GetObject("Column_Down.Image")));
this.Column_Down.Name = "Column_Down";
this.Column_Down.ReadOnly = true;
this.Column_Down.Visible = false;
this.Column_Down.Width = 50;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.cmbAoiFile);
this.groupBox1.Controls.Add(this.label9);
this.groupBox1.Controls.Add(this.txtBoardName);
this.groupBox1.Controls.Add(this.label25);
this.groupBox1.Controls.Add(this.label24);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.btnSave);
this.groupBox1.Controls.Add(this.txtBoardLength);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.txtBoardWidth);
this.groupBox1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.groupBox1.Location = new System.Drawing.Point(12, 8);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(1062, 68);
this.groupBox1.TabIndex = 20;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "程序基本信息";
//
// cmbAoiFile
//
this.cmbAoiFile.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbAoiFile.FormattingEnabled = true;
this.cmbAoiFile.Location = new System.Drawing.Point(350, 23);
this.cmbAoiFile.Name = "cmbAoiFile";
this.cmbAoiFile.Size = new System.Drawing.Size(180, 25);
this.cmbAoiFile.TabIndex = 269;
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(266, 28);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(78, 17);
this.label9.TabIndex = 268;
this.label9.Text = "AOI检测程序";
//
// txtBoardName
//
this.txtBoardName.Location = new System.Drawing.Point(46, 25);
this.txtBoardName.MaxLength = 20;
this.txtBoardName.Name = "txtBoardName";
this.txtBoardName.Size = new System.Drawing.Size(180, 23);
this.txtBoardName.TabIndex = 2;
//
// label25
//
this.label25.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label25.AutoSize = true;
this.label25.Location = new System.Drawing.Point(788, 28);
this.label25.Name = "label25";
this.label25.Size = new System.Drawing.Size(42, 17);
this.label25.TabIndex = 37;
this.label25.Text = "→mm";
//
// label24
//
this.label24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label24.AutoSize = true;
this.label24.Location = new System.Drawing.Point(651, 28);
this.label24.Name = "label24";
this.label24.Size = new System.Drawing.Size(36, 17);
this.label24.TabIndex = 36;
this.label24.Text = "↑mm";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(9, 28);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(32, 17);
this.label2.TabIndex = 1;
this.label2.Text = "名称";
//
// btnSave
//
this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnSave.FlatAppearance.BorderSize = 0;
this.btnSave.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnSave.Location = new System.Drawing.Point(939, 16);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(117, 41);
this.btnSave.TabIndex = 40;
this.btnSave.Text = "保存";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// txtBoardLength
//
this.txtBoardLength.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.txtBoardLength.Location = new System.Drawing.Point(596, 25);
this.txtBoardLength.MaxLength = 8;
this.txtBoardLength.Name = "txtBoardLength";
this.txtBoardLength.Size = new System.Drawing.Size(53, 23);
this.txtBoardLength.TabIndex = 4;
this.txtBoardLength.TextChanged += new System.EventHandler(this.txtBoardLength_TextChanged);
//
// label4
//
this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(711, 28);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(20, 17);
this.label4.TabIndex = 5;
this.label4.Text = "宽";
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(574, 28);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(20, 17);
this.label3.TabIndex = 3;
this.label3.Text = "高";
//
// txtBoardWidth
//
this.txtBoardWidth.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.txtBoardWidth.Location = new System.Drawing.Point(733, 25);
this.txtBoardWidth.MaxLength = 8;
this.txtBoardWidth.Name = "txtBoardWidth";
this.txtBoardWidth.Size = new System.Drawing.Size(53, 23);
this.txtBoardWidth.TabIndex = 6;
this.txtBoardWidth.TextChanged += new System.EventHandler(this.txtBoardWidth_TextChanged);
//
// btnOpenFile
//
this.btnOpenFile.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnOpenFile.FlatAppearance.BorderSize = 0;
this.btnOpenFile.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnOpenFile.Location = new System.Drawing.Point(1103, 22);
this.btnOpenFile.Name = "btnOpenFile";
this.btnOpenFile.Size = new System.Drawing.Size(117, 41);
this.btnOpenFile.TabIndex = 260;
this.btnOpenFile.Text = "打开图片";
this.btnOpenFile.UseVisualStyleBackColor = true;
this.btnOpenFile.Click += new System.EventHandler(this.btnOpenFile_Click);
//
// btnSStop
//
this.btnSStop.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnSStop.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnSStop.Location = new System.Drawing.Point(1264, 9);
this.btnSStop.Name = "btnSStop";
this.btnSStop.Size = new System.Drawing.Size(117, 23);
this.btnSStop.TabIndex = 256;
this.btnSStop.Text = "烙铁停止移动";
this.btnSStop.UseVisualStyleBackColor = true;
this.btnSStop.Visible = false;
//
// btnWStop
//
this.btnWStop.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnWStop.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnWStop.Location = new System.Drawing.Point(1264, 37);
this.btnWStop.Name = "btnWStop";
this.btnWStop.Size = new System.Drawing.Size(117, 23);
this.btnWStop.TabIndex = 257;
this.btnWStop.Text = "送丝停止移动";
this.btnWStop.UseVisualStyleBackColor = true;
this.btnWStop.Visible = false;
//
// label14
//
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(195, 34);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(44, 17);
this.label14.TabIndex = 9;
this.label14.Text = "条形码";
this.label14.Visible = false;
//
// Col_ID
//
this.Col_ID.HeaderText = "位置";
this.Col_ID.Name = "Col_ID";
this.Col_ID.ReadOnly = true;
this.Col_ID.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.Col_ID.Width = 120;
//
// Col_X
//
this.Col_X.DataPropertyName = "RobotX";
this.Col_X.HeaderText = "X";
this.Col_X.Name = "Col_X";
this.Col_X.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.Col_X.Width = 75;
//
// Col_Y
//
this.Col_Y.DataPropertyName = "RobotY";
this.Col_Y.HeaderText = "Y";
this.Col_Y.Name = "Col_Y";
this.Col_Y.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.Col_Y.Width = 75;
//
// Col_Z
//
this.Col_Z.DataPropertyName = "RobotZ";
this.Col_Z.HeaderText = "Z";
this.Col_Z.Name = "Col_Z";
this.Col_Z.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.Col_Z.Width = 75;
//
// Col_RX
//
this.Col_RX.DataPropertyName = "RobotRX";
this.Col_RX.HeaderText = "RX";
this.Col_RX.Name = "Col_RX";
this.Col_RX.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.Col_RX.Width = 75;
//
// Col_RY
//
this.Col_RY.DataPropertyName = "RobotRY";
this.Col_RY.HeaderText = "RY";
this.Col_RY.Name = "Col_RY";
this.Col_RY.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.Col_RY.Width = 75;
//
// Col_RZ
//
this.Col_RZ.DataPropertyName = "RobotRZ";
this.Col_RZ.HeaderText = "RZ";
this.Col_RZ.Name = "Col_RZ";
this.Col_RZ.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.Col_RZ.Width = 75;
//
// Col_Update
//
this.Col_Update.HeaderText = "更新坐标";
this.Col_Update.Name = "Col_Update";
this.Col_Update.ReadOnly = true;
this.Col_Update.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.Col_Update.Text = "更新坐标";
this.Col_Update.ToolTipText = "更新坐标";
this.Col_Update.UseColumnTextForLinkValue = true;
this.Col_Update.Width = 75;
//
// Col_Move
//
this.Col_Move.HeaderText = "移动测试";
this.Col_Move.Name = "Col_Move";
this.Col_Move.ReadOnly = true;
this.Col_Move.Text = "移动测试";
this.Col_Move.ToolTipText = "移动测试";
this.Col_Move.UseColumnTextForLinkValue = true;
this.Col_Move.Width = 75;
//
// FrmBoardInfo
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1392, 634);
this.Controls.Add(this.panel1);
this.Controls.Add(this.btnSStop);
this.Controls.Add(this.btnWStop);
this.Controls.Add(this.label14);
this.Name = "FrmBoardInfo";
this.Text = "新增程序";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmBoardInfo_FormClosing);
this.Load += new System.EventHandler(this.FrmBoardInfo_Load);
this.Shown += new System.EventHandler(this.FrmBoardInfo_Shown);
this.contextMenuStrip1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.picRight)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picLeft)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picUp)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picDown)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picZDel)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picZAdd)).EndInit();
this.contextMenuStrip2.ResumeLayout(false);
this.panel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dgvPoint)).EndInit();
this.panBoard.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.picBoard)).EndInit();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.panel3.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.tckSpeed)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dgvList)).EndInit();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtBoardWidth;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TextBox txtBoardLength;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox txtBoardName;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.DataGridView dgvList;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Button btnSavePoint;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Button btnWStop;
private System.Windows.Forms.Button btnSStop;
private System.Windows.Forms.Button btnWUp;
private System.Windows.Forms.Label label14;
private System.Windows.Forms.Button btnOpenFile;
private System.Windows.Forms.PictureBox picBoard;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.Panel panBoard;
private System.Windows.Forms.Button btnGoHome;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem 保存焊点ToolStripMenuItem;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip2;
private System.Windows.Forms.ToolStripMenuItem 上升ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 下降ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 删除ToolStripMenuItem;
private System.Windows.Forms.Label lblMsg;
private System.Windows.Forms.Label label25;
private System.Windows.Forms.Label label24;
private System.Windows.Forms.DataGridViewImageColumn dataGridViewImageColumn1;
private System.Windows.Forms.DataGridViewImageColumn dataGridViewImageColumn2;
private System.Windows.Forms.ToolStripMenuItem 更新坐标ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 测试位置ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 详情ToolStripMenuItem;
private System.Windows.Forms.Button btnStopSend;
private System.Windows.Forms.Button btnSendWire;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox txtSpeed;
private System.Windows.Forms.TrackBar tckSpeed;
private System.Windows.Forms.Label lblSpeed;
private System.Windows.Forms.Label lblEpsonError;
private System.Windows.Forms.Button btnStopDown;
private System.Windows.Forms.TextBox txtCode;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.Button btnPositionTest;
private System.Windows.Forms.Panel panPoint;
private System.Windows.Forms.Panel panel3;
private System.Windows.Forms.PictureBox picRight;
private System.Windows.Forms.PictureBox picLeft;
private System.Windows.Forms.PictureBox picUp;
private System.Windows.Forms.PictureBox picDown;
private System.Windows.Forms.PictureBox picZDel;
private System.Windows.Forms.PictureBox picZAdd;
private System.Windows.Forms.Label lblRobotRZ;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.Label lblRobotRY;
private System.Windows.Forms.Label lblRobotRX;
private System.Windows.Forms.Label label16;
private System.Windows.Forms.Label txtRobotZ;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label txtRobotY;
private System.Windows.Forms.Label txtRobotX;
private System.Windows.Forms.Label label12;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.TextBox txtSendWireLength;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.CheckBox chbIsSafe;
private System.Windows.Forms.Button btnExit;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.ComboBox cmbAoiFile;
private System.Windows.Forms.Label label17;
private System.Windows.Forms.Label label15;
private System.Windows.Forms.DataGridView dgvPoint;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_pointNum;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_Name;
private System.Windows.Forms.DataGridViewComboBoxColumn Column_pointType;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_X;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_Y;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_Z;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_RX;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_RY;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_RZ;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_preheatTemperature;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_preheatTemperatureMax;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_preheatTemperatureMin;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_preheatTime;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_weldTemperature;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_weldTemperatureMax;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_weldTemperatureMin;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_weldTime;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_startSendWireSpeed;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_startSendWireTime;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_sendWireSpeed;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_sendWireTime;
private System.Windows.Forms.DataGridViewCheckBoxColumn Column_isClear;
private System.Windows.Forms.DataGridViewTextBoxColumn Column_ClearTime;
private System.Windows.Forms.DataGridViewLinkColumn Column_getPosition;
private System.Windows.Forms.DataGridViewLinkColumn Column_MoveTest;
private System.Windows.Forms.DataGridViewLinkColumn Column_btnDetail;
private System.Windows.Forms.DataGridViewLinkColumn Column_Del;
private System.Windows.Forms.DataGridViewImageColumn Column_Up;
private System.Windows.Forms.DataGridViewImageColumn Column_Down;
private System.Windows.Forms.DataGridViewTextBoxColumn Col_ID;
private System.Windows.Forms.DataGridViewTextBoxColumn Col_X;
private System.Windows.Forms.DataGridViewTextBoxColumn Col_Y;
private System.Windows.Forms.DataGridViewTextBoxColumn Col_Z;
private System.Windows.Forms.DataGridViewTextBoxColumn Col_RX;
private System.Windows.Forms.DataGridViewTextBoxColumn Col_RY;
private System.Windows.Forms.DataGridViewTextBoxColumn Col_RZ;
private System.Windows.Forms.DataGridViewLinkColumn Col_Update;
private System.Windows.Forms.DataGridViewLinkColumn Col_Move;
}
}