|
|
@@ -35,6 +35,9 @@
|
|
|
this.progressBar1 = new System.Windows.Forms.ProgressBar();
|
|
|
this.textBoxWithPlaceHolder1 = new UAS_MES.CustomControl.TextBoxWithIcon.TextBoxWithPlaceHolder();
|
|
|
this.serialPortCombox1 = new UAS_MES.CustomControl.ComBoxWithFocus.SerialPortCombox();
|
|
|
+ this.txtMsg = new System.Windows.Forms.RichTextBox();
|
|
|
+ this.txtIP = new System.Windows.Forms.TextBox();
|
|
|
+ this.txtPORT = new System.Windows.Forms.TextBox();
|
|
|
this.SuspendLayout();
|
|
|
//
|
|
|
// button1
|
|
|
@@ -77,6 +80,7 @@
|
|
|
this.button4.TabIndex = 2;
|
|
|
this.button4.Text = "button4";
|
|
|
this.button4.UseVisualStyleBackColor = true;
|
|
|
+ this.button4.Click += new System.EventHandler(this.button4_Click);
|
|
|
//
|
|
|
// progressBar1
|
|
|
//
|
|
|
@@ -90,7 +94,7 @@
|
|
|
// textBoxWithPlaceHolder1
|
|
|
//
|
|
|
this.textBoxWithPlaceHolder1.BackColor = System.Drawing.Color.White;
|
|
|
- this.textBoxWithPlaceHolder1.Location = new System.Drawing.Point(747, 292);
|
|
|
+ this.textBoxWithPlaceHolder1.Location = new System.Drawing.Point(697, 198);
|
|
|
this.textBoxWithPlaceHolder1.Name = "textBoxWithPlaceHolder1";
|
|
|
this.textBoxWithPlaceHolder1.PlaceHolder = "123123";
|
|
|
this.textBoxWithPlaceHolder1.Size = new System.Drawing.Size(241, 25);
|
|
|
@@ -103,11 +107,38 @@
|
|
|
this.serialPortCombox1.Size = new System.Drawing.Size(186, 25);
|
|
|
this.serialPortCombox1.TabIndex = 6;
|
|
|
//
|
|
|
+ // txtMsg
|
|
|
+ //
|
|
|
+ this.txtMsg.Location = new System.Drawing.Point(424, 320);
|
|
|
+ this.txtMsg.Name = "txtMsg";
|
|
|
+ this.txtMsg.Size = new System.Drawing.Size(283, 160);
|
|
|
+ this.txtMsg.TabIndex = 7;
|
|
|
+ this.txtMsg.Text = "";
|
|
|
+ //
|
|
|
+ // txtIP
|
|
|
+ //
|
|
|
+ this.txtIP.Location = new System.Drawing.Point(424, 270);
|
|
|
+ this.txtIP.Name = "txtIP";
|
|
|
+ this.txtIP.Size = new System.Drawing.Size(136, 25);
|
|
|
+ this.txtIP.TabIndex = 8;
|
|
|
+ this.txtIP.Text = "127.0.0.1";
|
|
|
+ //
|
|
|
+ // txtPORT
|
|
|
+ //
|
|
|
+ this.txtPORT.Location = new System.Drawing.Point(607, 270);
|
|
|
+ this.txtPORT.Name = "txtPORT";
|
|
|
+ this.txtPORT.Size = new System.Drawing.Size(100, 25);
|
|
|
+ this.txtPORT.TabIndex = 9;
|
|
|
+ this.txtPORT.Text = "502";
|
|
|
+ //
|
|
|
// Form1
|
|
|
//
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
this.ClientSize = new System.Drawing.Size(1239, 738);
|
|
|
+ this.Controls.Add(this.txtPORT);
|
|
|
+ this.Controls.Add(this.txtIP);
|
|
|
+ this.Controls.Add(this.txtMsg);
|
|
|
this.Controls.Add(this.serialPortCombox1);
|
|
|
this.Controls.Add(this.textBoxWithPlaceHolder1);
|
|
|
this.Controls.Add(this.progressBar1);
|
|
|
@@ -119,6 +150,7 @@
|
|
|
this.Text = "Form1";
|
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
|
this.ResumeLayout(false);
|
|
|
+ this.PerformLayout();
|
|
|
|
|
|
}
|
|
|
|
|
|
@@ -134,5 +166,8 @@
|
|
|
private System.Windows.Forms.ProgressBar progressBar1;
|
|
|
private CustomControl.TextBoxWithIcon.TextBoxWithPlaceHolder textBoxWithPlaceHolder1;
|
|
|
private CustomControl.ComBoxWithFocus.SerialPortCombox serialPortCombox1;
|
|
|
+ private System.Windows.Forms.RichTextBox txtMsg;
|
|
|
+ private System.Windows.Forms.TextBox txtIP;
|
|
|
+ private System.Windows.Forms.TextBox txtPORT;
|
|
|
}
|
|
|
}
|