www.pudn.com > tcpipserver.rar > FormServer.Designer.cs
namespace WindowsApplication1
{
partial class FormServer
{
///
/// 必需的设计器变量。
///
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.groupBox1 = new System.Windows.Forms.GroupBox();
this.buttonStop = new System.Windows.Forms.Button();
this.buttonStart = new System.Windows.Forms.Button();
this.listBoxStatus = new System.Windows.Forms.ListBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.richTextBoxReceive = new System.Windows.Forms.RichTextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.buttonSend = new System.Windows.Forms.Button();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.richTextBoxSend = new System.Windows.Forms.RichTextBox();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.buttonStop);
this.groupBox1.Controls.Add(this.buttonStart);
this.groupBox1.Controls.Add(this.listBoxStatus);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(430, 159);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "状态信息";
//
// buttonStop
//
this.buttonStop.Location = new System.Drawing.Point(227, 126);
this.buttonStop.Name = "buttonStop";
this.buttonStop.Size = new System.Drawing.Size(75, 23);
this.buttonStop.TabIndex = 2;
this.buttonStop.Text = "停止监听";
this.buttonStop.UseVisualStyleBackColor = true;
this.buttonStop.Click += new System.EventHandler(this.buttonStop_Click);
//
// buttonStart
//
this.buttonStart.Location = new System.Drawing.Point(119, 126);
this.buttonStart.Name = "buttonStart";
this.buttonStart.Size = new System.Drawing.Size(75, 23);
this.buttonStart.TabIndex = 1;
this.buttonStart.Text = "开始监听";
this.buttonStart.UseVisualStyleBackColor = true;
this.buttonStart.Click += new System.EventHandler(this.buttonStart_Click);
//
// listBoxStatus
//
this.listBoxStatus.FormattingEnabled = true;
this.listBoxStatus.ItemHeight = 12;
this.listBoxStatus.Location = new System.Drawing.Point(24, 20);
this.listBoxStatus.Name = "listBoxStatus";
this.listBoxStatus.Size = new System.Drawing.Size(379, 100);
this.listBoxStatus.TabIndex = 0;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.richTextBoxReceive);
this.groupBox2.Location = new System.Drawing.Point(12, 177);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(430, 135);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "接受的信息";
//
// richTextBoxReceive
//
this.richTextBoxReceive.Location = new System.Drawing.Point(24, 20);
this.richTextBoxReceive.Name = "richTextBoxReceive";
this.richTextBoxReceive.Size = new System.Drawing.Size(379, 96);
this.richTextBoxReceive.TabIndex = 0;
this.richTextBoxReceive.Text = "";
//
// groupBox3
//
this.groupBox3.Controls.Add(this.buttonSend);
this.groupBox3.Controls.Add(this.comboBox1);
this.groupBox3.Controls.Add(this.label1);
this.groupBox3.Controls.Add(this.richTextBoxSend);
this.groupBox3.Location = new System.Drawing.Point(12, 318);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(430, 155);
this.groupBox3.TabIndex = 1;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "准备发送的信息";
//
// buttonSend
//
this.buttonSend.Location = new System.Drawing.Point(328, 122);
this.buttonSend.Name = "buttonSend";
this.buttonSend.Size = new System.Drawing.Size(75, 23);
this.buttonSend.TabIndex = 3;
this.buttonSend.Text = "发送";
this.buttonSend.UseVisualStyleBackColor = true;
this.buttonSend.Click += new System.EventHandler(this.buttonSend_Click);
//
// comboBox1
//
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Location = new System.Drawing.Point(82, 123);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(220, 20);
this.comboBox1.TabIndex = 2;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(22, 128);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 1;
this.label1.Text = "接受方:";
//
// richTextBoxSend
//
this.richTextBoxSend.Location = new System.Drawing.Point(24, 20);
this.richTextBoxSend.Name = "richTextBoxSend";
this.richTextBoxSend.Size = new System.Drawing.Size(379, 96);
this.richTextBoxSend.TabIndex = 0;
this.richTextBoxSend.Text = "";
//
// FormServer
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(457, 485);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Name = "FormServer";
this.Text = "Form1";
this.groupBox1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.ListBox listBoxStatus;
private System.Windows.Forms.Button buttonStop;
private System.Windows.Forms.Button buttonStart;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.RichTextBox richTextBoxReceive;
private System.Windows.Forms.Button buttonSend;
private System.Windows.Forms.ComboBox comboBox1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.RichTextBox richTextBoxSend;
}
}