CIDebugControl.Designer.cs
9.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
namespace TheMachine.device
{
partial class CIDebugControl
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.label_status = new System.Windows.Forms.Label();
this.btn_start = new System.Windows.Forms.Button();
this.txt_barcode = new System.Windows.Forms.TextBox();
this.label_barcode = new System.Windows.Forms.Label();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.cb_manualcount = new System.Windows.Forms.CheckBox();
this.btn_finishcount = new System.Windows.Forms.Button();
this.label_watchstatus = new System.Windows.Forms.Label();
this.btn_manualsend = new System.Windows.Forms.Button();
this.cb_com = new System.Windows.Forms.ComboBox();
this.cb_bitrate = new System.Windows.Forms.ComboBox();
this.btn_reopen = new System.Windows.Forms.Button();
this.button_start = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label_status
//
this.label_status.AutoSize = true;
this.label_status.Location = new System.Drawing.Point(60, 143);
this.label_status.Name = "label_status";
this.label_status.Size = new System.Drawing.Size(41, 12);
this.label_status.TabIndex = 0;
this.label_status.Text = "label1";
//
// btn_start
//
this.btn_start.Enabled = false;
this.btn_start.Location = new System.Drawing.Point(305, 143);
this.btn_start.Name = "btn_start";
this.btn_start.Size = new System.Drawing.Size(135, 23);
this.btn_start.TabIndex = 1;
this.btn_start.Text = "Start count";
this.btn_start.UseVisualStyleBackColor = true;
this.btn_start.Click += new System.EventHandler(this.btn_start_Click);
//
// txt_barcode
//
this.txt_barcode.Location = new System.Drawing.Point(123, 76);
this.txt_barcode.Name = "txt_barcode";
this.txt_barcode.Size = new System.Drawing.Size(337, 21);
this.txt_barcode.TabIndex = 2;
this.txt_barcode.Text = "12345|123456789";
//
// label_barcode
//
this.label_barcode.AutoSize = true;
this.label_barcode.Location = new System.Drawing.Point(60, 79);
this.label_barcode.Name = "label_barcode";
this.label_barcode.Size = new System.Drawing.Size(53, 12);
this.label_barcode.TabIndex = 0;
this.label_barcode.Text = "Barcode:";
//
// timer1
//
this.timer1.Enabled = true;
this.timer1.Interval = 1000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// cb_manualcount
//
this.cb_manualcount.AutoSize = true;
this.cb_manualcount.Checked = true;
this.cb_manualcount.CheckState = System.Windows.Forms.CheckState.Checked;
this.cb_manualcount.Location = new System.Drawing.Point(32, 27);
this.cb_manualcount.Name = "cb_manualcount";
this.cb_manualcount.Size = new System.Drawing.Size(120, 16);
this.cb_manualcount.TabIndex = 3;
this.cb_manualcount.Text = "Manual operation";
this.cb_manualcount.UseVisualStyleBackColor = true;
this.cb_manualcount.CheckedChanged += new System.EventHandler(this.cb_manualcount_CheckedChanged);
//
// btn_finishcount
//
this.btn_finishcount.Enabled = false;
this.btn_finishcount.Location = new System.Drawing.Point(305, 221);
this.btn_finishcount.Name = "btn_finishcount";
this.btn_finishcount.Size = new System.Drawing.Size(135, 23);
this.btn_finishcount.TabIndex = 4;
this.btn_finishcount.Text = "Finish count";
this.btn_finishcount.UseVisualStyleBackColor = true;
this.btn_finishcount.Click += new System.EventHandler(this.btn_finishcount_Click);
//
// label_watchstatus
//
this.label_watchstatus.AutoSize = true;
this.label_watchstatus.Location = new System.Drawing.Point(60, 284);
this.label_watchstatus.Name = "label_watchstatus";
this.label_watchstatus.Size = new System.Drawing.Size(41, 12);
this.label_watchstatus.TabIndex = 0;
this.label_watchstatus.Text = "label1";
//
// btn_manualsend
//
this.btn_manualsend.Location = new System.Drawing.Point(486, 74);
this.btn_manualsend.Name = "btn_manualsend";
this.btn_manualsend.Size = new System.Drawing.Size(132, 23);
this.btn_manualsend.TabIndex = 5;
this.btn_manualsend.Text = "Send manually";
this.btn_manualsend.UseVisualStyleBackColor = true;
this.btn_manualsend.Click += new System.EventHandler(this.btn_manualsend_Click);
//
// cb_com
//
this.cb_com.FormattingEnabled = true;
this.cb_com.Items.AddRange(new object[] {
"COM1",
"COM2",
"COM3",
"COM4",
"COM5",
"COM6",
"COM7",
"COM8",
"COM9",
"COM10"});
this.cb_com.Location = new System.Drawing.Point(224, 25);
this.cb_com.Name = "cb_com";
this.cb_com.Size = new System.Drawing.Size(101, 20);
this.cb_com.TabIndex = 6;
this.cb_com.Visible = false;
//
// cb_bitrate
//
this.cb_bitrate.FormattingEnabled = true;
this.cb_bitrate.Items.AddRange(new object[] {
"115200",
"9600",
"4800"});
this.cb_bitrate.Location = new System.Drawing.Point(331, 25);
this.cb_bitrate.Name = "cb_bitrate";
this.cb_bitrate.Size = new System.Drawing.Size(121, 20);
this.cb_bitrate.TabIndex = 6;
this.cb_bitrate.Visible = false;
//
// btn_reopen
//
this.btn_reopen.Location = new System.Drawing.Point(469, 23);
this.btn_reopen.Name = "btn_reopen";
this.btn_reopen.Size = new System.Drawing.Size(75, 23);
this.btn_reopen.TabIndex = 7;
this.btn_reopen.Text = "Apply";
this.btn_reopen.UseVisualStyleBackColor = true;
this.btn_reopen.Visible = false;
this.btn_reopen.Click += new System.EventHandler(this.btn_reopen_Click);
//
// button_start
//
this.button_start.Location = new System.Drawing.Point(486, 104);
this.button_start.Name = "button_start";
this.button_start.Size = new System.Drawing.Size(132, 23);
this.button_start.TabIndex = 8;
this.button_start.Text = "Start button";
this.button_start.UseVisualStyleBackColor = true;
this.button_start.Click += new System.EventHandler(this.button_start_Click);
//
// CIDebugControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.button_start);
this.Controls.Add(this.btn_reopen);
this.Controls.Add(this.cb_bitrate);
this.Controls.Add(this.cb_com);
this.Controls.Add(this.btn_manualsend);
this.Controls.Add(this.btn_finishcount);
this.Controls.Add(this.cb_manualcount);
this.Controls.Add(this.txt_barcode);
this.Controls.Add(this.btn_start);
this.Controls.Add(this.label_barcode);
this.Controls.Add(this.label_watchstatus);
this.Controls.Add(this.label_status);
this.Name = "CIDebugControl";
this.Size = new System.Drawing.Size(693, 359);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label_status;
private System.Windows.Forms.Button btn_start;
private System.Windows.Forms.TextBox txt_barcode;
private System.Windows.Forms.Label label_barcode;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.CheckBox cb_manualcount;
private System.Windows.Forms.Button btn_finishcount;
private System.Windows.Forms.Label label_watchstatus;
private System.Windows.Forms.Button btn_manualsend;
private System.Windows.Forms.ComboBox cb_com;
private System.Windows.Forms.ComboBox cb_bitrate;
private System.Windows.Forms.Button btn_reopen;
private System.Windows.Forms.Button button_start;
}
}