FrmShuoKeDebug.Designer.cs
34.8 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
namespace URSoldering.Client
{
partial class FrmShuoKeDebug
{
/// <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();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.btnLineAbsMove = new System.Windows.Forms.Button();
this.btnClearPosition = new System.Windows.Forms.Button();
this.btnCloseForm = new System.Windows.Forms.Button();
this.btnHomeMove = new System.Windows.Forms.Button();
this.label15 = new System.Windows.Forms.Label();
this.btnGetPosition = new System.Windows.Forms.Button();
this.btnSetSpeed = new System.Windows.Forms.Button();
this.txtDelSpeed = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.txtAddSpeed = new System.Windows.Forms.TextBox();
this.cmbHomeType = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.txtMaxSpeed = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtTargetSpeed = new System.Windows.Forms.TextBox();
this.lblShuoKeAdd = new System.Windows.Forms.Label();
this.txtBeginSpeed = new System.Windows.Forms.TextBox();
this.lblShuoKePort = new System.Windows.Forms.Label();
this.btnClose = new System.Windows.Forms.Button();
this.btnOpen = new System.Windows.Forms.Button();
this.label12 = new System.Windows.Forms.Label();
this.comboBoxPortName = new System.Windows.Forms.ComboBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.btnLineSetSpeed = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.btnLineRelMove = new System.Windows.Forms.Button();
this.txtLineAddr = new System.Windows.Forms.TextBox();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.txtLineSpeed = new System.Windows.Forms.TextBox();
this.btnLineSpeedMove = new System.Windows.Forms.Button();
this.lblPosition = new System.Windows.Forms.Label();
this.txtLinePosition = new System.Windows.Forms.TextBox();
this.btnLineStop = new System.Windows.Forms.Button();
this.btnStop = new System.Windows.Forms.Button();
this.txtWirePosition = new System.Windows.Forms.TextBox();
this.label8 = new System.Windows.Forms.Label();
this.btnVolMove = new System.Windows.Forms.Button();
this.txtWireSpeed = new System.Windows.Forms.TextBox();
this.label13 = new System.Windows.Forms.Label();
this.label18 = new System.Windows.Forms.Label();
this.txtWireAddr = new System.Windows.Forms.TextBox();
this.btnRelMove = new System.Windows.Forms.Button();
this.lblMsg = new System.Windows.Forms.Label();
this.btnStatusSearch = new System.Windows.Forms.Button();
this.btnSet = new System.Windows.Forms.Button();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label7 = new System.Windows.Forms.Label();
this.txtPosition = new System.Windows.Forms.TextBox();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.radioButton1 = new System.Windows.Forms.RadioButton();
this.groupBox1.SuspendLayout();
this.groupBox6.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// timer1
//
this.timer1.Interval = 500;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// btnLineAbsMove
//
this.btnLineAbsMove.Location = new System.Drawing.Point(103, 266);
this.btnLineAbsMove.Name = "btnLineAbsMove";
this.btnLineAbsMove.Size = new System.Drawing.Size(85, 25);
this.btnLineAbsMove.TabIndex = 9;
this.btnLineAbsMove.Text = "绝对运动";
this.btnLineAbsMove.UseVisualStyleBackColor = true;
this.btnLineAbsMove.Click += new System.EventHandler(this.btnLineAbsMove_Click_1);
//
// btnClearPosition
//
this.btnClearPosition.Location = new System.Drawing.Point(103, 295);
this.btnClearPosition.Name = "btnClearPosition";
this.btnClearPosition.Size = new System.Drawing.Size(85, 25);
this.btnClearPosition.TabIndex = 11;
this.btnClearPosition.Text = "清理位置";
this.btnClearPosition.UseVisualStyleBackColor = true;
this.btnClearPosition.Click += new System.EventHandler(this.btnClearPosition_Click);
//
// btnCloseForm
//
this.btnCloseForm.Location = new System.Drawing.Point(630, 22);
this.btnCloseForm.Name = "btnCloseForm";
this.btnCloseForm.Size = new System.Drawing.Size(117, 35);
this.btnCloseForm.TabIndex = 109;
this.btnCloseForm.Text = "返回(&B)";
this.btnCloseForm.UseVisualStyleBackColor = true;
this.btnCloseForm.Click += new System.EventHandler(this.button1_Click);
//
// btnHomeMove
//
this.btnHomeMove.Location = new System.Drawing.Point(12, 266);
this.btnHomeMove.Name = "btnHomeMove";
this.btnHomeMove.Size = new System.Drawing.Size(85, 25);
this.btnHomeMove.TabIndex = 12;
this.btnHomeMove.Text = "原点返回";
this.btnHomeMove.UseVisualStyleBackColor = true;
this.btnHomeMove.Click += new System.EventHandler(this.btnHomeMove_Click);
//
// label15
//
this.label15.AutoSize = true;
this.label15.Location = new System.Drawing.Point(14, 214);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(68, 17);
this.label15.TabIndex = 91;
this.label15.Text = "原点方向:";
//
// btnGetPosition
//
this.btnGetPosition.Location = new System.Drawing.Point(12, 295);
this.btnGetPosition.Name = "btnGetPosition";
this.btnGetPosition.Size = new System.Drawing.Size(85, 25);
this.btnGetPosition.TabIndex = 93;
this.btnGetPosition.Text = "查询位置";
this.btnGetPosition.UseVisualStyleBackColor = true;
this.btnGetPosition.Click += new System.EventHandler(this.btnGetPosition_Click);
//
// btnSetSpeed
//
this.btnSetSpeed.Location = new System.Drawing.Point(90, 183);
this.btnSetSpeed.Name = "btnSetSpeed";
this.btnSetSpeed.Size = new System.Drawing.Size(100, 23);
this.btnSetSpeed.TabIndex = 108;
this.btnSetSpeed.Text = "设置速度";
this.btnSetSpeed.UseVisualStyleBackColor = true;
this.btnSetSpeed.Click += new System.EventHandler(this.btnSetSpeed_Click);
//
// txtDelSpeed
//
this.txtDelSpeed.Location = new System.Drawing.Point(90, 156);
this.txtDelSpeed.Name = "txtDelSpeed";
this.txtDelSpeed.Size = new System.Drawing.Size(100, 23);
this.txtDelSpeed.TabIndex = 107;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(28, 159);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(56, 17);
this.label4.TabIndex = 106;
this.label4.Text = "减速度:";
//
// txtAddSpeed
//
this.txtAddSpeed.Location = new System.Drawing.Point(90, 129);
this.txtAddSpeed.Name = "txtAddSpeed";
this.txtAddSpeed.Size = new System.Drawing.Size(100, 23);
this.txtAddSpeed.TabIndex = 105;
//
// cmbHomeType
//
this.cmbHomeType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbHomeType.FormattingEnabled = true;
this.cmbHomeType.Items.AddRange(new object[] {
"0",
"1"});
this.cmbHomeType.Location = new System.Drawing.Point(90, 210);
this.cmbHomeType.Name = "cmbHomeType";
this.cmbHomeType.Size = new System.Drawing.Size(100, 25);
this.cmbHomeType.TabIndex = 92;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(28, 132);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(56, 17);
this.label1.TabIndex = 104;
this.label1.Text = "加速度:";
//
// txtMaxSpeed
//
this.txtMaxSpeed.Location = new System.Drawing.Point(90, 102);
this.txtMaxSpeed.Name = "txtMaxSpeed";
this.txtMaxSpeed.Size = new System.Drawing.Size(100, 23);
this.txtMaxSpeed.TabIndex = 103;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(16, 105);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(68, 17);
this.label2.TabIndex = 102;
this.label2.Text = "最大速度:";
//
// txtTargetSpeed
//
this.txtTargetSpeed.Location = new System.Drawing.Point(90, 75);
this.txtTargetSpeed.Name = "txtTargetSpeed";
this.txtTargetSpeed.Size = new System.Drawing.Size(100, 23);
this.txtTargetSpeed.TabIndex = 101;
//
// lblShuoKeAdd
//
this.lblShuoKeAdd.AutoSize = true;
this.lblShuoKeAdd.Location = new System.Drawing.Point(16, 78);
this.lblShuoKeAdd.Name = "lblShuoKeAdd";
this.lblShuoKeAdd.Size = new System.Drawing.Size(68, 17);
this.lblShuoKeAdd.TabIndex = 100;
this.lblShuoKeAdd.Text = "目标速度:";
//
// txtBeginSpeed
//
this.txtBeginSpeed.Location = new System.Drawing.Point(90, 48);
this.txtBeginSpeed.Name = "txtBeginSpeed";
this.txtBeginSpeed.Size = new System.Drawing.Size(100, 23);
this.txtBeginSpeed.TabIndex = 99;
//
// lblShuoKePort
//
this.lblShuoKePort.AutoSize = true;
this.lblShuoKePort.Location = new System.Drawing.Point(16, 51);
this.lblShuoKePort.Name = "lblShuoKePort";
this.lblShuoKePort.Size = new System.Drawing.Size(68, 17);
this.lblShuoKePort.TabIndex = 98;
this.lblShuoKePort.Text = "起始速度:";
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(387, 23);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(117, 35);
this.btnClose.TabIndex = 87;
this.btnClose.Text = "关闭串口";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnOpen
//
this.btnOpen.Location = new System.Drawing.Point(236, 23);
this.btnOpen.Name = "btnOpen";
this.btnOpen.Size = new System.Drawing.Size(117, 35);
this.btnOpen.TabIndex = 86;
this.btnOpen.Text = "打开串口";
this.btnOpen.UseVisualStyleBackColor = true;
this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click);
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(37, 32);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(56, 17);
this.label12.TabIndex = 1;
this.label12.Text = "端口号:";
//
// comboBoxPortName
//
this.comboBoxPortName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxPortName.FormattingEnabled = true;
this.comboBoxPortName.Location = new System.Drawing.Point(98, 28);
this.comboBoxPortName.Name = "comboBoxPortName";
this.comboBoxPortName.Size = new System.Drawing.Size(103, 25);
this.comboBoxPortName.TabIndex = 0;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.btnLineSetSpeed);
this.groupBox1.Controls.Add(this.button2);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.btnLineRelMove);
this.groupBox1.Controls.Add(this.txtLineAddr);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.txtLineSpeed);
this.groupBox1.Controls.Add(this.btnLineSpeedMove);
this.groupBox1.Controls.Add(this.lblPosition);
this.groupBox1.Controls.Add(this.txtLinePosition);
this.groupBox1.Controls.Add(this.btnLineStop);
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(32, 244);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(507, 157);
this.groupBox1.TabIndex = 251;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "流水线调试";
//
// btnLineSetSpeed
//
this.btnLineSetSpeed.Location = new System.Drawing.Point(365, 25);
this.btnLineSetSpeed.Name = "btnLineSetSpeed";
this.btnLineSetSpeed.Size = new System.Drawing.Size(117, 35);
this.btnLineSetSpeed.TabIndex = 110;
this.btnLineSetSpeed.Text = "设置速度";
this.btnLineSetSpeed.UseVisualStyleBackColor = true;
this.btnLineSetSpeed.Click += new System.EventHandler(this.btnLineSetSpeed_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(365, 108);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(117, 35);
this.button2.TabIndex = 85;
this.button2.Text = "查询运动状态";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.ForeColor = System.Drawing.Color.Red;
this.label3.Location = new System.Drawing.Point(31, 387);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(92, 17);
this.label3.TabIndex = 97;
this.label3.Text = "未收到反馈数据";
//
// btnLineRelMove
//
this.btnLineRelMove.Location = new System.Drawing.Point(242, 26);
this.btnLineRelMove.Name = "btnLineRelMove";
this.btnLineRelMove.Size = new System.Drawing.Size(117, 35);
this.btnLineRelMove.TabIndex = 96;
this.btnLineRelMove.Text = "相对运动";
this.btnLineRelMove.UseVisualStyleBackColor = true;
this.btnLineRelMove.Click += new System.EventHandler(this.btnLineRelMove_Click);
//
// txtLineAddr
//
this.txtLineAddr.Enabled = false;
this.txtLineAddr.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.txtLineAddr.Location = new System.Drawing.Point(120, 24);
this.txtLineAddr.Name = "txtLineAddr";
this.txtLineAddr.Size = new System.Drawing.Size(103, 26);
this.txtLineAddr.TabIndex = 95;
this.txtLineAddr.Text = "1";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(34, 26);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(80, 17);
this.label5.TabIndex = 94;
this.label5.Text = "流水线地址:";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(70, 108);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(44, 17);
this.label6.TabIndex = 90;
this.label6.Text = "速度:";
//
// txtLineSpeed
//
this.txtLineSpeed.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.txtLineSpeed.Location = new System.Drawing.Point(120, 102);
this.txtLineSpeed.Name = "txtLineSpeed";
this.txtLineSpeed.Size = new System.Drawing.Size(103, 26);
this.txtLineSpeed.TabIndex = 89;
this.txtLineSpeed.Text = "3";
//
// btnLineSpeedMove
//
this.btnLineSpeedMove.Location = new System.Drawing.Point(242, 69);
this.btnLineSpeedMove.Name = "btnLineSpeedMove";
this.btnLineSpeedMove.Size = new System.Drawing.Size(117, 35);
this.btnLineSpeedMove.TabIndex = 88;
this.btnLineSpeedMove.Text = "匀速运动";
this.btnLineSpeedMove.UseVisualStyleBackColor = true;
this.btnLineSpeedMove.Click += new System.EventHandler(this.btnLineSpeedMove_Click);
//
// lblPosition
//
this.lblPosition.AutoSize = true;
this.lblPosition.Location = new System.Drawing.Point(70, 67);
this.lblPosition.Name = "lblPosition";
this.lblPosition.Size = new System.Drawing.Size(44, 17);
this.lblPosition.TabIndex = 84;
this.lblPosition.Text = "位置:";
//
// txtLinePosition
//
this.txtLinePosition.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.txtLinePosition.Location = new System.Drawing.Point(120, 63);
this.txtLinePosition.Name = "txtLinePosition";
this.txtLinePosition.Size = new System.Drawing.Size(103, 26);
this.txtLinePosition.TabIndex = 83;
this.txtLinePosition.Text = "3000";
//
// btnLineStop
//
this.btnLineStop.Location = new System.Drawing.Point(365, 68);
this.btnLineStop.Name = "btnLineStop";
this.btnLineStop.Size = new System.Drawing.Size(117, 35);
this.btnLineStop.TabIndex = 10;
this.btnLineStop.Text = "停止";
this.btnLineStop.UseVisualStyleBackColor = true;
this.btnLineStop.Click += new System.EventHandler(this.btnLineStop_Click);
//
// btnStop
//
this.btnStop.Location = new System.Drawing.Point(365, 68);
this.btnStop.Name = "btnStop";
this.btnStop.Size = new System.Drawing.Size(117, 35);
this.btnStop.TabIndex = 10;
this.btnStop.Text = "停止送丝";
this.btnStop.UseVisualStyleBackColor = true;
this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
//
// txtWirePosition
//
this.txtWirePosition.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.txtWirePosition.Location = new System.Drawing.Point(120, 63);
this.txtWirePosition.Name = "txtWirePosition";
this.txtWirePosition.Size = new System.Drawing.Size(103, 26);
this.txtWirePosition.TabIndex = 83;
this.txtWirePosition.Text = "3";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(17, 67);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(97, 17);
this.label8.TabIndex = 84;
this.label8.Text = "送丝长度/毫米:";
//
// btnVolMove
//
this.btnVolMove.Location = new System.Drawing.Point(242, 69);
this.btnVolMove.Name = "btnVolMove";
this.btnVolMove.Size = new System.Drawing.Size(117, 35);
this.btnVolMove.TabIndex = 88;
this.btnVolMove.Text = "匀速送丝";
this.btnVolMove.UseVisualStyleBackColor = true;
this.btnVolMove.Click += new System.EventHandler(this.btnVolMove_Click);
//
// txtWireSpeed
//
this.txtWireSpeed.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.txtWireSpeed.Location = new System.Drawing.Point(120, 102);
this.txtWireSpeed.Name = "txtWireSpeed";
this.txtWireSpeed.Size = new System.Drawing.Size(103, 26);
this.txtWireSpeed.TabIndex = 89;
this.txtWireSpeed.Text = "3";
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(17, 108);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(97, 17);
this.label13.TabIndex = 90;
this.label13.Text = "送丝速度/毫米:";
//
// label18
//
this.label18.AutoSize = true;
this.label18.Location = new System.Drawing.Point(46, 26);
this.label18.Name = "label18";
this.label18.Size = new System.Drawing.Size(68, 17);
this.label18.TabIndex = 94;
this.label18.Text = "送丝地址:";
//
// txtWireAddr
//
this.txtWireAddr.Enabled = false;
this.txtWireAddr.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.txtWireAddr.Location = new System.Drawing.Point(120, 24);
this.txtWireAddr.Name = "txtWireAddr";
this.txtWireAddr.Size = new System.Drawing.Size(103, 26);
this.txtWireAddr.TabIndex = 95;
this.txtWireAddr.Text = "1";
this.txtWireAddr.TextChanged += new System.EventHandler(this.txtAddr_TextChanged);
//
// btnRelMove
//
this.btnRelMove.Location = new System.Drawing.Point(242, 26);
this.btnRelMove.Name = "btnRelMove";
this.btnRelMove.Size = new System.Drawing.Size(117, 35);
this.btnRelMove.TabIndex = 96;
this.btnRelMove.Text = "送丝测试";
this.btnRelMove.UseVisualStyleBackColor = true;
this.btnRelMove.Click += new System.EventHandler(this.btnRelMove_Click);
//
// lblMsg
//
this.lblMsg.AutoSize = true;
this.lblMsg.ForeColor = System.Drawing.Color.Red;
this.lblMsg.Location = new System.Drawing.Point(29, 415);
this.lblMsg.Name = "lblMsg";
this.lblMsg.Size = new System.Drawing.Size(92, 17);
this.lblMsg.TabIndex = 97;
this.lblMsg.Text = "未收到反馈数据";
//
// btnStatusSearch
//
this.btnStatusSearch.Location = new System.Drawing.Point(365, 108);
this.btnStatusSearch.Name = "btnStatusSearch";
this.btnStatusSearch.Size = new System.Drawing.Size(117, 35);
this.btnStatusSearch.TabIndex = 85;
this.btnStatusSearch.Text = "查询运动状态";
this.btnStatusSearch.UseVisualStyleBackColor = true;
this.btnStatusSearch.Click += new System.EventHandler(this.btnStatusSearch_Click);
//
// btnSet
//
this.btnSet.Location = new System.Drawing.Point(365, 25);
this.btnSet.Name = "btnSet";
this.btnSet.Size = new System.Drawing.Size(117, 35);
this.btnSet.TabIndex = 110;
this.btnSet.Text = "设置速度";
this.btnSet.UseVisualStyleBackColor = true;
this.btnSet.Click += new System.EventHandler(this.btnSet_Click);
//
// groupBox6
//
this.groupBox6.Controls.Add(this.btnSet);
this.groupBox6.Controls.Add(this.btnStatusSearch);
this.groupBox6.Controls.Add(this.btnRelMove);
this.groupBox6.Controls.Add(this.txtWireAddr);
this.groupBox6.Controls.Add(this.label18);
this.groupBox6.Controls.Add(this.label13);
this.groupBox6.Controls.Add(this.txtWireSpeed);
this.groupBox6.Controls.Add(this.btnVolMove);
this.groupBox6.Controls.Add(this.label8);
this.groupBox6.Controls.Add(this.txtWirePosition);
this.groupBox6.Controls.Add(this.btnStop);
this.groupBox6.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.groupBox6.Location = new System.Drawing.Point(32, 81);
this.groupBox6.Name = "groupBox6";
this.groupBox6.Size = new System.Drawing.Size(507, 157);
this.groupBox6.TabIndex = 250;
this.groupBox6.TabStop = false;
this.groupBox6.Text = "送丝调试";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.label7);
this.groupBox2.Controls.Add(this.txtPosition);
this.groupBox2.Controls.Add(this.radioButton2);
this.groupBox2.Controls.Add(this.radioButton1);
this.groupBox2.Controls.Add(this.txtBeginSpeed);
this.groupBox2.Controls.Add(this.lblShuoKeAdd);
this.groupBox2.Controls.Add(this.txtTargetSpeed);
this.groupBox2.Controls.Add(this.btnLineAbsMove);
this.groupBox2.Controls.Add(this.label2);
this.groupBox2.Controls.Add(this.btnClearPosition);
this.groupBox2.Controls.Add(this.lblShuoKePort);
this.groupBox2.Controls.Add(this.txtMaxSpeed);
this.groupBox2.Controls.Add(this.btnHomeMove);
this.groupBox2.Controls.Add(this.label1);
this.groupBox2.Controls.Add(this.cmbHomeType);
this.groupBox2.Controls.Add(this.label15);
this.groupBox2.Controls.Add(this.txtAddSpeed);
this.groupBox2.Controls.Add(this.label4);
this.groupBox2.Controls.Add(this.btnGetPosition);
this.groupBox2.Controls.Add(this.txtDelSpeed);
this.groupBox2.Controls.Add(this.btnSetSpeed);
this.groupBox2.Location = new System.Drawing.Point(545, 67);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(208, 334);
this.groupBox2.TabIndex = 252;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "参数调试";
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(38, 243);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(44, 17);
this.label7.TabIndex = 111;
this.label7.Text = "位置:";
//
// txtPosition
//
this.txtPosition.Location = new System.Drawing.Point(90, 239);
this.txtPosition.Name = "txtPosition";
this.txtPosition.Size = new System.Drawing.Size(100, 23);
this.txtPosition.TabIndex = 112;
//
// radioButton2
//
this.radioButton2.AutoSize = true;
this.radioButton2.Location = new System.Drawing.Point(100, 24);
this.radioButton2.Name = "radioButton2";
this.radioButton2.Size = new System.Drawing.Size(62, 21);
this.radioButton2.TabIndex = 110;
this.radioButton2.Text = "流水线";
this.radioButton2.UseVisualStyleBackColor = true;
//
// radioButton1
//
this.radioButton1.AutoSize = true;
this.radioButton1.Checked = true;
this.radioButton1.Location = new System.Drawing.Point(19, 24);
this.radioButton1.Name = "radioButton1";
this.radioButton1.Size = new System.Drawing.Size(50, 21);
this.radioButton1.TabIndex = 109;
this.radioButton1.TabStop = true;
this.radioButton1.Text = "送丝";
this.radioButton1.UseVisualStyleBackColor = true;
this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
//
// FrmShuoKeDebug
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(774, 450);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.lblMsg);
this.Controls.Add(this.groupBox6);
this.Controls.Add(this.comboBoxPortName);
this.Controls.Add(this.btnCloseForm);
this.Controls.Add(this.label12);
this.Controls.Add(this.btnOpen);
this.Controls.Add(this.btnClose);
this.Name = "FrmShuoKeDebug";
this.Text = "送丝驱动器调试";
this.Load += new System.EventHandler(this.FrmShuoKe_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox6.ResumeLayout(false);
this.groupBox6.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnGetPosition;
private System.Windows.Forms.ComboBox cmbHomeType;
private System.Windows.Forms.Label label15;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Button btnOpen;
private System.Windows.Forms.Button btnHomeMove;
private System.Windows.Forms.Button btnClearPosition;
private System.Windows.Forms.Button btnLineAbsMove;
private System.Windows.Forms.Label label12;
private System.Windows.Forms.ComboBox comboBoxPortName;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.TextBox txtDelSpeed;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TextBox txtAddSpeed;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtMaxSpeed;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtTargetSpeed;
private System.Windows.Forms.Label lblShuoKeAdd;
private System.Windows.Forms.TextBox txtBeginSpeed;
private System.Windows.Forms.Label lblShuoKePort;
private System.Windows.Forms.Button btnSetSpeed;
private System.Windows.Forms.Button btnCloseForm;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button btnLineRelMove;
private System.Windows.Forms.TextBox txtLineAddr;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.TextBox txtLineSpeed;
private System.Windows.Forms.Button btnLineSpeedMove;
private System.Windows.Forms.Label lblPosition;
private System.Windows.Forms.TextBox txtLinePosition;
private System.Windows.Forms.Button btnLineStop;
private System.Windows.Forms.Button btnStop;
private System.Windows.Forms.TextBox txtWirePosition;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.Button btnVolMove;
private System.Windows.Forms.TextBox txtWireSpeed;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.Label label18;
private System.Windows.Forms.TextBox txtWireAddr;
private System.Windows.Forms.Button btnRelMove;
private System.Windows.Forms.Label lblMsg;
private System.Windows.Forms.Button btnStatusSearch;
private System.Windows.Forms.Button btnSet;
private System.Windows.Forms.GroupBox groupBox6;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.RadioButton radioButton2;
private System.Windows.Forms.RadioButton radioButton1;
private System.Windows.Forms.Button btnLineSetSpeed;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.TextBox txtPosition;
}
}