namespace UdpTcpAsciiCmd
{
partial class Form1
{
///
/// 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.label1 = new System.Windows.Forms.Label();
this.txtIP = new System.Windows.Forms.TextBox();
this.btnConnect = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.btnSend = new System.Windows.Forms.Button();
this.txtTime = new System.Windows.Forms.TextBox();
this.txtRespond = new System.Windows.Forms.TextBox();
this.txtSend = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 11);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(18, 12);
this.label1.TabIndex = 0;
this.label1.Text = "IP:";
//
// txtIP
//
this.txtIP.Location = new System.Drawing.Point(36, 8);
this.txtIP.Name = "txtIP";
this.txtIP.Size = new System.Drawing.Size(154, 22);
this.txtIP.TabIndex = 1;
this.txtIP.Text = "10.0.0.1";
//
// btnConnect
//
this.btnConnect.Location = new System.Drawing.Point(214, 8);
this.btnConnect.Name = "btnConnect";
this.btnConnect.Size = new System.Drawing.Size(75, 23);
this.btnConnect.TabIndex = 2;
this.btnConnect.Text = "Connect";
this.btnConnect.UseVisualStyleBackColor = true;
this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.btnSend);
this.groupBox1.Controls.Add(this.txtTime);
this.groupBox1.Controls.Add(this.txtRespond);
this.groupBox1.Controls.Add(this.txtSend);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Location = new System.Drawing.Point(8, 43);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(485, 117);
this.groupBox1.TabIndex = 3;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "ASCII Command";
//
// btnSend
//
this.btnSend.Location = new System.Drawing.Point(404, 21);
this.btnSend.Name = "btnSend";
this.btnSend.Size = new System.Drawing.Size(75, 23);
this.btnSend.TabIndex = 6;
this.btnSend.Text = "Send";
this.btnSend.UseVisualStyleBackColor = true;
this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
//
// txtTime
//
this.txtTime.Location = new System.Drawing.Point(64, 87);
this.txtTime.Name = "txtTime";
this.txtTime.ReadOnly = true;
this.txtTime.Size = new System.Drawing.Size(334, 22);
this.txtTime.TabIndex = 5;
//
// txtRespond
//
this.txtRespond.Location = new System.Drawing.Point(64, 54);
this.txtRespond.Name = "txtRespond";
this.txtRespond.ReadOnly = true;
this.txtRespond.Size = new System.Drawing.Size(334, 22);
this.txtRespond.TabIndex = 4;
//
// txtSend
//
this.txtSend.Location = new System.Drawing.Point(64, 23);
this.txtSend.Name = "txtSend";
this.txtSend.Size = new System.Drawing.Size(334, 22);
this.txtSend.TabIndex = 3;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(15, 90);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(32, 12);
this.label4.TabIndex = 2;
this.label4.Text = "Time:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(15, 57);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(49, 12);
this.label3.TabIndex = 1;
this.label3.Text = "Respond:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(15, 26);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(31, 12);
this.label2.TabIndex = 0;
this.label2.Text = "Send:";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(499, 167);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.btnConnect);
this.Controls.Add(this.txtIP);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Form1";
this.Text = "UDP ASCII Command (C#)";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtIP;
private System.Windows.Forms.Button btnConnect;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button btnSend;
private System.Windows.Forms.TextBox txtTime;
private System.Windows.Forms.TextBox txtRespond;
private System.Windows.Forms.TextBox txtSend;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
}
}