This commit is contained in:
2017-05-11 11:31:25 +02:00
parent 23ecfdd906
commit 3474c80c07
6 changed files with 281 additions and 2 deletions

View File

@@ -102,6 +102,10 @@
this.btn_RB_Tris_0 = new System.Windows.Forms.Button();
this.btn_RA_0 = new System.Windows.Forms.Button();
this.btn_RA_Tris_0 = new System.Windows.Forms.Button();
this.edRS232Log = new System.Windows.Forms.TextBox();
this.cbxComPorts = new System.Windows.Forms.ComboBox();
this.btnRSConnect = new System.Windows.Forms.Button();
this.btnRSDisconnect = new System.Windows.Forms.Button();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
@@ -758,11 +762,51 @@
this.btn_RA_Tris_0.UseVisualStyleBackColor = true;
this.btn_RA_Tris_0.Click += new System.EventHandler(this.btn_RA_Tris_0_Click);
//
// edRS232Log
//
this.edRS232Log.Location = new System.Drawing.Point(1129, 494);
this.edRS232Log.Multiline = true;
this.edRS232Log.Name = "edRS232Log";
this.edRS232Log.Size = new System.Drawing.Size(157, 183);
this.edRS232Log.TabIndex = 54;
//
// cbxComPorts
//
this.cbxComPorts.FormattingEnabled = true;
this.cbxComPorts.Location = new System.Drawing.Point(1129, 438);
this.cbxComPorts.Name = "cbxComPorts";
this.cbxComPorts.Size = new System.Drawing.Size(157, 21);
this.cbxComPorts.TabIndex = 55;
//
// btnRSConnect
//
this.btnRSConnect.Location = new System.Drawing.Point(1129, 465);
this.btnRSConnect.Name = "btnRSConnect";
this.btnRSConnect.Size = new System.Drawing.Size(75, 23);
this.btnRSConnect.TabIndex = 56;
this.btnRSConnect.Text = "Connect";
this.btnRSConnect.UseVisualStyleBackColor = true;
this.btnRSConnect.Click += new System.EventHandler(this.btnRSConnect_Click);
//
// btnRSDisconnect
//
this.btnRSDisconnect.Location = new System.Drawing.Point(1212, 464);
this.btnRSDisconnect.Name = "btnRSDisconnect";
this.btnRSDisconnect.Size = new System.Drawing.Size(75, 23);
this.btnRSDisconnect.TabIndex = 57;
this.btnRSDisconnect.Text = "Disconnect";
this.btnRSDisconnect.UseVisualStyleBackColor = true;
this.btnRSDisconnect.Click += new System.EventHandler(this.btnRSDisconnect_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1298, 692);
this.Controls.Add(this.btnRSDisconnect);
this.Controls.Add(this.btnRSConnect);
this.Controls.Add(this.cbxComPorts);
this.Controls.Add(this.edRS232Log);
this.Controls.Add(this.btn_RB_0);
this.Controls.Add(this.btn_RB_Tris_0);
this.Controls.Add(this.btn_RA_0);
@@ -900,6 +944,10 @@
private System.Windows.Forms.Button btn_RB_Tris_0;
private System.Windows.Forms.Button btn_RA_0;
private System.Windows.Forms.Button btn_RA_Tris_0;
private System.Windows.Forms.TextBox edRS232Log;
private System.Windows.Forms.ComboBox cbxComPorts;
private System.Windows.Forms.Button btnRSConnect;
private System.Windows.Forms.Button btnRSDisconnect;
}
}