namespace WindowsFormsApplication1
{
partial class ReadCOMportData
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.serialPort1 = new System.IO.Ports.SerialPort(this.components);
this.reqTxt = new System.Windows.Forms.TextBox();
this.resTxt = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.lbShow = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// serialPort1
//
this.serialPort1.BaudRate = 2400;
this.serialPort1.DataBits = 7;
this.serialPort1.PortName = "COM2";
this.serialPort1.ReadBufferSize = 4800;
//
// reqTxt
//
this.reqTxt.Location = new System.Drawing.Point(61, 12);
this.reqTxt.Name = "reqTxt";
this.reqTxt.Size = new System.Drawing.Size(100, 20);
this.reqTxt.TabIndex = 0;
this.reqTxt.TextChanged += new System.EventHandler(this.reqTxt_TextChanged);
//
// resTxt
//
this.resTxt.Location = new System.Drawing.Point(61, 56);
this.resTxt.Multiline = true;
this.resTxt.Name = "resTxt";
this.resTxt.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.resTxt.Size = new System.Drawing.Size(277, 235);
this.resTxt.TabIndex = 1;
//
// button1
//
this.button1.Location = new System.Drawing.Point(190, 8);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 2;
this.button1.Text = "Send";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(13, 56);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(39, 13);
this.label1.TabIndex = 3;
this.label1.Text = "Output";
this.label1.Click += new System.EventHandler(this.label1_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(16, 14);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(31, 13);
this.label2.TabIndex = 4;
this.label2.Text = "Input";
//
// lbShow
//
this.lbShow.AutoSize = true;
this.lbShow.Font = new System.Drawing.Font("Microsoft Sans Serif", 50F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
this.lbShow.ForeColor = System.Drawing.Color.Red;
this.lbShow.Location = new System.Drawing.Point(453, 56);
this.lbShow.Name = "lbShow";
this.lbShow.Size = new System.Drawing.Size(215, 76);
this.lbShow.TabIndex = 5;
this.lbShow.Text = "label3";
//
// ReadCOMportData
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(732, 323);
this.Controls.Add(this.lbShow);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.button1);
this.Controls.Add(this.resTxt);
this.Controls.Add(this.reqTxt);
this.Name = "ReadCOMportData";
this.Text = "ReadCOMportData";
this.Load += new System.EventHandler(this.ReadCOMportData_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.IO.Ports.SerialPort serialPort1;
private System.Windows.Forms.TextBox reqTxt;
private System.Windows.Forms.TextBox resTxt;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label lbShow;
}
}