|
@@ -32,6 +32,7 @@
|
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
|
this.button2 = new System.Windows.Forms.Button();
|
|
this.button2 = new System.Windows.Forms.Button();
|
|
|
this.button3 = new System.Windows.Forms.Button();
|
|
this.button3 = new System.Windows.Forms.Button();
|
|
|
|
|
+ this.cmbComport = new System.Windows.Forms.ComboBox();
|
|
|
this.SuspendLayout();
|
|
this.SuspendLayout();
|
|
|
//
|
|
//
|
|
|
// button1
|
|
// button1
|
|
@@ -75,12 +76,22 @@
|
|
|
this.button3.UseVisualStyleBackColor = true;
|
|
this.button3.UseVisualStyleBackColor = true;
|
|
|
this.button3.Click += new System.EventHandler(this.button3_Click);
|
|
this.button3.Click += new System.EventHandler(this.button3_Click);
|
|
|
//
|
|
//
|
|
|
|
|
+ // cmbComport
|
|
|
|
|
+ //
|
|
|
|
|
+ this.cmbComport.FormattingEnabled = true;
|
|
|
|
|
+ this.cmbComport.Location = new System.Drawing.Point(188, 12);
|
|
|
|
|
+ this.cmbComport.Name = "cmbComport";
|
|
|
|
|
+ this.cmbComport.Size = new System.Drawing.Size(121, 21);
|
|
|
|
|
+ this.cmbComport.TabIndex = 4;
|
|
|
|
|
+ this.cmbComport.SelectionChangeCommitted += new System.EventHandler(this.cmbComport_SelectionChangeCommitted);
|
|
|
|
|
+ //
|
|
|
// MainForm
|
|
// MainForm
|
|
|
//
|
|
//
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
this.AutoScroll = true;
|
|
this.AutoScroll = true;
|
|
|
this.ClientSize = new System.Drawing.Size(830, 343);
|
|
this.ClientSize = new System.Drawing.Size(830, 343);
|
|
|
|
|
+ this.Controls.Add(this.cmbComport);
|
|
|
this.Controls.Add(this.button3);
|
|
this.Controls.Add(this.button3);
|
|
|
this.Controls.Add(this.button2);
|
|
this.Controls.Add(this.button2);
|
|
|
this.Controls.Add(this.textBox1);
|
|
this.Controls.Add(this.textBox1);
|
|
@@ -98,6 +109,7 @@
|
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
|
private System.Windows.Forms.Button button2;
|
|
private System.Windows.Forms.Button button2;
|
|
|
private System.Windows.Forms.Button button3;
|
|
private System.Windows.Forms.Button button3;
|
|
|
|
|
+ private System.Windows.Forms.ComboBox cmbComport;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|