-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
808 lines (801 loc) · 38.4 KB
/
Copy pathForm1.Designer.cs
File metadata and controls
808 lines (801 loc) · 38.4 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
namespace LED_Color
{
partial class Form1
{
/// <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.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem6 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem7 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem8 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem9 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem10 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem11 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem12 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem13 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem14 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem15 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem16 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem17 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem18 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem19 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem20 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem21 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem22 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem23 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem24 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem25 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem26 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem27 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem28 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem29 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem30 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem31 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem32 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem33 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem34 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem35 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem36 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem37 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem38 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem39 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem40 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem41 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem42 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem43 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem44 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem45 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem46 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem47 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem48 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem49 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem50 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem51 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem52 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem53 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem54 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem55 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem56 = new System.Windows.Forms.ListViewItem(new string[] {
"",
""}, -1);
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.disConn = new System.Windows.Forms.Button();
this.Conn = new System.Windows.Forms.Button();
this.serialPort1 = new System.IO.Ports.SerialPort(this.components);
this.portBox = new System.Windows.Forms.ComboBox();
this.textBoxRead = new System.Windows.Forms.TextBox();
this.textBoxSend = new System.Windows.Forms.TextBox();
this.Apply = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.listView1 = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.tabPage2 = new System.Windows.Forms.TabPage();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.rest_Arduino = new System.Windows.Forms.Button();
this.clear_Serila = new System.Windows.Forms.Button();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.speed_plus = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.textBoxspeed = new System.Windows.Forms.TextBox();
this.Applys = new System.Windows.Forms.Button();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.bri_plus = new System.Windows.Forms.Button();
this.bri_mins = new System.Windows.Forms.Button();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.trackBarBir = new System.Windows.Forms.TrackBar();
this.label3 = new System.Windows.Forms.Label();
this.textBoxbri = new System.Windows.Forms.TextBox();
this.applyb = new System.Windows.Forms.Button();
this.groupBox7 = new System.Windows.Forms.GroupBox();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.ColorD = new System.Windows.Forms.Button();
this.colorDialog1 = new System.Windows.Forms.ColorDialog();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.showToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
this.groupBox1.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.tabPage2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox5.SuspendLayout();
this.groupBox6.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.trackBarBir)).BeginInit();
this.groupBox7.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// disConn
//
this.disConn.Location = new System.Drawing.Point(214, 26);
this.disConn.Name = "disConn";
this.disConn.Size = new System.Drawing.Size(75, 23);
this.disConn.TabIndex = 0;
this.disConn.Text = "Disconnect";
this.disConn.UseVisualStyleBackColor = true;
this.disConn.Click += new System.EventHandler(this.disConn_Click_1);
//
// Conn
//
this.Conn.Location = new System.Drawing.Point(133, 26);
this.Conn.Name = "Conn";
this.Conn.Size = new System.Drawing.Size(75, 23);
this.Conn.TabIndex = 1;
this.Conn.Text = "Connect";
this.Conn.UseVisualStyleBackColor = true;
this.Conn.Click += new System.EventHandler(this.Conn_Click);
//
// portBox
//
this.portBox.DropDownWidth = 143;
this.portBox.FormattingEnabled = true;
this.portBox.Location = new System.Drawing.Point(6, 28);
this.portBox.Name = "portBox";
this.portBox.Size = new System.Drawing.Size(121, 21);
this.portBox.TabIndex = 3;
//
// textBoxRead
//
this.textBoxRead.Location = new System.Drawing.Point(6, 19);
this.textBoxRead.Multiline = true;
this.textBoxRead.Name = "textBoxRead";
this.textBoxRead.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textBoxRead.Size = new System.Drawing.Size(521, 451);
this.textBoxRead.TabIndex = 4;
//
// textBoxSend
//
this.textBoxSend.Location = new System.Drawing.Point(6, 19);
this.textBoxSend.Name = "textBoxSend";
this.textBoxSend.Size = new System.Drawing.Size(202, 20);
this.textBoxSend.TabIndex = 5;
this.textBoxSend.KeyDown += new System.Windows.Forms.KeyEventHandler(this.enter);
//
// Apply
//
this.Apply.Location = new System.Drawing.Point(214, 19);
this.Apply.Name = "Apply";
this.Apply.Size = new System.Drawing.Size(75, 23);
this.Apply.TabIndex = 6;
this.Apply.Text = "Apply";
this.Apply.UseVisualStyleBackColor = true;
this.Apply.Click += new System.EventHandler(this.Apply_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.portBox);
this.groupBox1.Controls.Add(this.Conn);
this.groupBox1.Controls.Add(this.disConn);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(305, 65);
this.groupBox1.TabIndex = 12;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Port and connect";
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.tabControl1.Location = new System.Drawing.Point(323, 12);
this.tabControl1.Multiline = true;
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(562, 550);
this.tabControl1.TabIndex = 53;
//
// tabPage1
//
this.tabPage1.BackColor = System.Drawing.Color.Transparent;
this.tabPage1.Controls.Add(this.groupBox2);
this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(554, 524);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Mods";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.listView1);
this.groupBox2.Location = new System.Drawing.Point(6, 6);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(535, 505);
this.groupBox2.TabIndex = 54;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "groupBox2";
//
// listView1
//
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2});
this.listView1.FullRowSelect = true;
this.listView1.GridLines = true;
this.listView1.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
listViewItem1,
listViewItem2,
listViewItem3,
listViewItem4,
listViewItem5,
listViewItem6,
listViewItem7,
listViewItem8,
listViewItem9,
listViewItem10,
listViewItem11,
listViewItem12,
listViewItem13,
listViewItem14,
listViewItem15,
listViewItem16,
listViewItem17,
listViewItem18,
listViewItem19,
listViewItem20,
listViewItem21,
listViewItem22,
listViewItem23,
listViewItem24,
listViewItem25,
listViewItem26,
listViewItem27,
listViewItem28,
listViewItem29,
listViewItem30,
listViewItem31,
listViewItem32,
listViewItem33,
listViewItem34,
listViewItem35,
listViewItem36,
listViewItem37,
listViewItem38,
listViewItem39,
listViewItem40,
listViewItem41,
listViewItem42,
listViewItem43,
listViewItem44,
listViewItem45,
listViewItem46,
listViewItem47,
listViewItem48,
listViewItem49,
listViewItem50,
listViewItem51,
listViewItem52,
listViewItem53,
listViewItem54,
listViewItem55,
listViewItem56});
this.listView1.Location = new System.Drawing.Point(6, 18);
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(521, 481);
this.listView1.TabIndex = 0;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Details;
this.listView1.SelectedIndexChanged += new System.EventHandler(this.select_item);
//
// columnHeader1
//
this.columnHeader1.Text = "NO.";
//
// columnHeader2
//
this.columnHeader2.Text = "Mods";
this.columnHeader2.Width = 192;
//
// tabPage2
//
this.tabPage2.BackColor = System.Drawing.Color.Transparent;
this.tabPage2.Controls.Add(this.groupBox3);
this.tabPage2.Location = new System.Drawing.Point(4, 22);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(554, 524);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "Serail";
//
// groupBox3
//
this.groupBox3.Controls.Add(this.rest_Arduino);
this.groupBox3.Controls.Add(this.clear_Serila);
this.groupBox3.Controls.Add(this.textBoxRead);
this.groupBox3.Location = new System.Drawing.Point(6, 6);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(535, 505);
this.groupBox3.TabIndex = 13;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Output Serial";
//
// rest_Arduino
//
this.rest_Arduino.Location = new System.Drawing.Point(454, 476);
this.rest_Arduino.Name = "rest_Arduino";
this.rest_Arduino.Size = new System.Drawing.Size(75, 23);
this.rest_Arduino.TabIndex = 60;
this.rest_Arduino.Text = "Rest";
this.rest_Arduino.UseVisualStyleBackColor = true;
this.rest_Arduino.Click += new System.EventHandler(this.rest_Arduino_Click);
//
// clear_Serila
//
this.clear_Serila.Location = new System.Drawing.Point(6, 476);
this.clear_Serila.Name = "clear_Serila";
this.clear_Serila.Size = new System.Drawing.Size(75, 23);
this.clear_Serila.TabIndex = 59;
this.clear_Serila.Text = "Clear";
this.clear_Serila.UseVisualStyleBackColor = true;
this.clear_Serila.Click += new System.EventHandler(this.clear_Serila_Click);
//
// groupBox4
//
this.groupBox4.Controls.Add(this.label1);
this.groupBox4.Controls.Add(this.textBoxSend);
this.groupBox4.Controls.Add(this.Apply);
this.groupBox4.Location = new System.Drawing.Point(12, 83);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(305, 67);
this.groupBox4.TabIndex = 54;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "Set Mod";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(6, 42);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(117, 13);
this.label1.TabIndex = 55;
this.label1.Text = "Chose Mod Number";
//
// groupBox5
//
this.groupBox5.Controls.Add(this.speed_plus);
this.groupBox5.Controls.Add(this.button1);
this.groupBox5.Controls.Add(this.label2);
this.groupBox5.Controls.Add(this.textBoxspeed);
this.groupBox5.Controls.Add(this.Applys);
this.groupBox5.Location = new System.Drawing.Point(12, 156);
this.groupBox5.Name = "groupBox5";
this.groupBox5.Size = new System.Drawing.Size(305, 97);
this.groupBox5.TabIndex = 56;
this.groupBox5.TabStop = false;
this.groupBox5.Text = "Set Speed";
//
// speed_plus
//
this.speed_plus.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.speed_plus.Location = new System.Drawing.Point(214, 48);
this.speed_plus.Name = "speed_plus";
this.speed_plus.Size = new System.Drawing.Size(75, 23);
this.speed_plus.TabIndex = 57;
this.speed_plus.Text = "+";
this.speed_plus.UseVisualStyleBackColor = true;
this.speed_plus.Click += new System.EventHandler(this.speed_plus_Click);
//
// button1
//
this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button1.Location = new System.Drawing.Point(6, 45);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 56;
this.button1.Text = "-";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(6, 81);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(258, 13);
this.label2.TabIndex = 55;
this.label2.Text = "Chose Speed Number Between 10 To 65535";
//
// textBoxspeed
//
this.textBoxspeed.Location = new System.Drawing.Point(6, 19);
this.textBoxspeed.Name = "textBoxspeed";
this.textBoxspeed.Size = new System.Drawing.Size(202, 20);
this.textBoxspeed.TabIndex = 5;
this.textBoxspeed.KeyDown += new System.Windows.Forms.KeyEventHandler(this.enters);
//
// Applys
//
this.Applys.Location = new System.Drawing.Point(214, 19);
this.Applys.Name = "Applys";
this.Applys.Size = new System.Drawing.Size(75, 23);
this.Applys.TabIndex = 6;
this.Applys.Text = "Apply";
this.Applys.UseVisualStyleBackColor = true;
this.Applys.Click += new System.EventHandler(this.Applys_Click);
//
// groupBox6
//
this.groupBox6.Controls.Add(this.bri_plus);
this.groupBox6.Controls.Add(this.bri_mins);
this.groupBox6.Controls.Add(this.pictureBox1);
this.groupBox6.Controls.Add(this.trackBarBir);
this.groupBox6.Controls.Add(this.label3);
this.groupBox6.Controls.Add(this.textBoxbri);
this.groupBox6.Controls.Add(this.applyb);
this.groupBox6.Location = new System.Drawing.Point(12, 259);
this.groupBox6.Name = "groupBox6";
this.groupBox6.Size = new System.Drawing.Size(305, 146);
this.groupBox6.TabIndex = 57;
this.groupBox6.TabStop = false;
this.groupBox6.Text = "Set Brightness";
//
// bri_plus
//
this.bri_plus.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.bri_plus.Location = new System.Drawing.Point(214, 96);
this.bri_plus.Name = "bri_plus";
this.bri_plus.Size = new System.Drawing.Size(75, 23);
this.bri_plus.TabIndex = 61;
this.bri_plus.Text = "+";
this.bri_plus.UseVisualStyleBackColor = true;
this.bri_plus.Click += new System.EventHandler(this.bri_plus_Click);
//
// bri_mins
//
this.bri_mins.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.bri_mins.Location = new System.Drawing.Point(6, 96);
this.bri_mins.Name = "bri_mins";
this.bri_mins.Size = new System.Drawing.Size(75, 23);
this.bri_mins.TabIndex = 60;
this.bri_mins.Text = "-";
this.bri_mins.UseVisualStyleBackColor = true;
this.bri_mins.Click += new System.EventHandler(this.bri_mins_Click);
//
// pictureBox1
//
this.pictureBox1.Image = global::LED_Color.Properties.Resources.Capture1;
this.pictureBox1.Location = new System.Drawing.Point(9, 80);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(280, 10);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 59;
this.pictureBox1.TabStop = false;
//
// trackBarBir
//
this.trackBarBir.Cursor = System.Windows.Forms.Cursors.NoMoveHoriz;
this.trackBarBir.Location = new System.Drawing.Point(6, 45);
this.trackBarBir.Maximum = 255;
this.trackBarBir.Name = "trackBarBir";
this.trackBarBir.Size = new System.Drawing.Size(293, 45);
this.trackBarBir.TabIndex = 59;
this.trackBarBir.Scroll += new System.EventHandler(this.trackBarBir_Scroll);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.Location = new System.Drawing.Point(20, 122);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(260, 13);
this.label3.TabIndex = 55;
this.label3.Text = "Chose Brightness Number Between 0 To 255";
//
// textBoxbri
//
this.textBoxbri.Location = new System.Drawing.Point(6, 19);
this.textBoxbri.Name = "textBoxbri";
this.textBoxbri.Size = new System.Drawing.Size(202, 20);
this.textBoxbri.TabIndex = 5;
this.textBoxbri.KeyDown += new System.Windows.Forms.KeyEventHandler(this.enterb);
//
// applyb
//
this.applyb.Location = new System.Drawing.Point(214, 19);
this.applyb.Name = "applyb";
this.applyb.Size = new System.Drawing.Size(75, 23);
this.applyb.TabIndex = 6;
this.applyb.Text = "Apply";
this.applyb.UseVisualStyleBackColor = true;
this.applyb.Click += new System.EventHandler(this.applyb_Click);
//
// groupBox7
//
this.groupBox7.Controls.Add(this.pictureBox2);
this.groupBox7.Controls.Add(this.ColorD);
this.groupBox7.Location = new System.Drawing.Point(12, 411);
this.groupBox7.Name = "groupBox7";
this.groupBox7.Size = new System.Drawing.Size(305, 76);
this.groupBox7.TabIndex = 58;
this.groupBox7.TabStop = false;
this.groupBox7.Text = "Set Color";
//
// pictureBox2
//
this.pictureBox2.Image = global::LED_Color.Properties.Resources.Screen_Shot_2016_09_28_at_2_33_39_PM;
this.pictureBox2.Location = new System.Drawing.Point(6, 19);
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.Size = new System.Drawing.Size(48, 48);
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox2.TabIndex = 59;
this.pictureBox2.TabStop = false;
//
// ColorD
//
this.ColorD.Location = new System.Drawing.Point(60, 31);
this.ColorD.Name = "ColorD";
this.ColorD.Size = new System.Drawing.Size(75, 23);
this.ColorD.TabIndex = 6;
this.ColorD.Text = "Color";
this.ColorD.UseVisualStyleBackColor = true;
this.ColorD.Click += new System.EventHandler(this.ColorD_Click);
//
// colorDialog1
//
this.colorDialog1.AnyColor = true;
this.colorDialog1.Color = System.Drawing.Color.Gray;
this.colorDialog1.FullOpen = true;
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.showToolStripMenuItem,
this.exitToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(104, 48);
//
// showToolStripMenuItem
//
this.showToolStripMenuItem.Name = "showToolStripMenuItem";
this.showToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
this.showToolStripMenuItem.Text = "Show";
this.showToolStripMenuItem.Click += new System.EventHandler(this.showToolStripMenuItem_Click);
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
this.exitToolStripMenuItem.Text = "Exit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// notifyIcon1
//
this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
this.notifyIcon1.Text = "Setting";
this.notifyIcon1.Visible = true;
this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(911, 573);
this.Controls.Add(this.groupBox7);
this.Controls.Add(this.groupBox6);
this.Controls.Add(this.groupBox5);
this.Controls.Add(this.groupBox4);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.groupBox1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "Form1";
this.Text = "Color LED Arduino";
this.Load += new System.EventHandler(this.Form1_Load);
this.Move += new System.EventHandler(this.Form_Move);
this.groupBox1.ResumeLayout(false);
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.groupBox5.ResumeLayout(false);
this.groupBox5.PerformLayout();
this.groupBox6.ResumeLayout(false);
this.groupBox6.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.trackBarBir)).EndInit();
this.groupBox7.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button disConn;
private System.Windows.Forms.Button Conn;
private System.IO.Ports.SerialPort serialPort1;
private System.Windows.Forms.ComboBox portBox;
private System.Windows.Forms.TextBox textBoxRead;
private System.Windows.Forms.TextBox textBoxSend;
private System.Windows.Forms.Button Apply;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.TabPage tabPage2;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.ListView listView1;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.GroupBox groupBox4;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.GroupBox groupBox5;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox textBoxspeed;
private System.Windows.Forms.Button Applys;
private System.Windows.Forms.GroupBox groupBox6;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox textBoxbri;
private System.Windows.Forms.Button applyb;
private System.Windows.Forms.GroupBox groupBox7;
private System.Windows.Forms.Button ColorD;
public System.Windows.Forms.ColorDialog colorDialog1;
private System.Windows.Forms.TrackBar trackBarBir;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.PictureBox pictureBox2;
private System.Windows.Forms.Button clear_Serila;
private System.Windows.Forms.Button rest_Arduino;
private System.Windows.Forms.Button bri_plus;
private System.Windows.Forms.Button bri_mins;
private System.Windows.Forms.Button speed_plus;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem showToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
private System.Windows.Forms.NotifyIcon notifyIcon1;
}
}