namespace DotNettyFrom
{
partial class Form1
{
///
/// 必需的设计器变量。
///
private System.ComponentModel.IContainer components = null;
///
/// 清理所有正在使用的资源。
///
/// 如果应释放托管资源,为 true;否则为 false。
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
///
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
///
private void InitializeComponent()
{
this.listBox1 = new System.Windows.Forms.ListBox();
this.TbHost = new System.Windows.Forms.TextBox();
this.TbPort = new System.Windows.Forms.TextBox();
this.BtnConnection = new System.Windows.Forms.Button();
this.BtnDisConn = new System.Windows.Forms.Button();
this.BtnLogin = new System.Windows.Forms.Button();
this.BtnSendData = new System.Windows.Forms.Button();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.文件FToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// listBox1
//
this.listBox1.FormattingEnabled = true;
this.listBox1.ItemHeight = 12;
this.listBox1.Location = new System.Drawing.Point(12, 60);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(820, 436);
this.listBox1.TabIndex = 0;
//
// TbHost
//
this.TbHost.Location = new System.Drawing.Point(39, 23);
this.TbHost.Name = "TbHost";
this.TbHost.Size = new System.Drawing.Size(241, 21);
this.TbHost.TabIndex = 1;
this.TbHost.Text = "127.0.0.1";
//
// TbPort
//
this.TbPort.Location = new System.Drawing.Point(286, 23);
this.TbPort.Name = "TbPort";
this.TbPort.Size = new System.Drawing.Size(72, 21);
this.TbPort.TabIndex = 1;
this.TbPort.Text = "4001";
//
// BtnConnection
//
this.BtnConnection.Location = new System.Drawing.Point(364, 23);
this.BtnConnection.Name = "BtnConnection";
this.BtnConnection.Size = new System.Drawing.Size(75, 23);
this.BtnConnection.TabIndex = 2;
this.BtnConnection.Text = "连接";
this.BtnConnection.UseVisualStyleBackColor = true;
this.BtnConnection.Click += new System.EventHandler(this.BtnConnection_Click);
//
// BtnDisConn
//
this.BtnDisConn.Location = new System.Drawing.Point(445, 23);
this.BtnDisConn.Name = "BtnDisConn";
this.BtnDisConn.Size = new System.Drawing.Size(75, 23);
this.BtnDisConn.TabIndex = 2;
this.BtnDisConn.Text = "断开";
this.BtnDisConn.UseVisualStyleBackColor = true;
this.BtnDisConn.Click += new System.EventHandler(this.BtnDisConn_Click);
//
// BtnLogin
//
this.BtnLogin.Location = new System.Drawing.Point(526, 23);
this.BtnLogin.Name = "BtnLogin";
this.BtnLogin.Size = new System.Drawing.Size(75, 23);
this.BtnLogin.TabIndex = 2;
this.BtnLogin.Text = "登录";
this.BtnLogin.UseVisualStyleBackColor = true;
//
// BtnSendData
//
this.BtnSendData.Location = new System.Drawing.Point(607, 23);
this.BtnSendData.Name = "BtnSendData";
this.BtnSendData.Size = new System.Drawing.Size(75, 23);
this.BtnSendData.TabIndex = 2;
this.BtnSendData.Text = "发送数据";
this.BtnSendData.UseVisualStyleBackColor = true;
this.BtnSendData.Click += new System.EventHandler(this.BtnSendData_Click);
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.文件FToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(844, 25);
this.menuStrip1.TabIndex = 3;
this.menuStrip1.Text = "menuStrip1";
//
// 文件FToolStripMenuItem
//
this.文件FToolStripMenuItem.Name = "文件FToolStripMenuItem";
this.文件FToolStripMenuItem.Size = new System.Drawing.Size(58, 21);
this.文件FToolStripMenuItem.Text = "文件(&F)";
//
// statusStrip1
//
this.statusStrip1.Location = new System.Drawing.Point(0, 508);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(844, 22);
this.statusStrip1.TabIndex = 4;
this.statusStrip1.Text = "statusStrip1";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(844, 530);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.BtnDisConn);
this.Controls.Add(this.BtnSendData);
this.Controls.Add(this.BtnLogin);
this.Controls.Add(this.BtnConnection);
this.Controls.Add(this.TbPort);
this.Controls.Add(this.TbHost);
this.Controls.Add(this.listBox1);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.TextBox TbHost;
private System.Windows.Forms.TextBox TbPort;
private System.Windows.Forms.Button BtnConnection;
private System.Windows.Forms.Button BtnDisConn;
private System.Windows.Forms.Button BtnLogin;
private System.Windows.Forms.Button BtnSendData;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem 文件FToolStripMenuItem;
private System.Windows.Forms.StatusStrip statusStrip1;
}
}