namespace TextServer { 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.btnCon = new System.Windows.Forms.Button(); this.txtContent = new System.Windows.Forms.TextBox(); this.btnSend = new System.Windows.Forms.Button(); this.txtIp = new System.Windows.Forms.TextBox(); this.txtPort = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.lbMsg = new System.Windows.Forms.Label(); this.SuspendLayout(); // // btnCon // this.btnCon.Location = new System.Drawing.Point(947, 65); this.btnCon.Name = "btnCon"; this.btnCon.Size = new System.Drawing.Size(75, 23); this.btnCon.TabIndex = 0; this.btnCon.Text = "连接"; this.btnCon.UseVisualStyleBackColor = true; this.btnCon.Click += new System.EventHandler(this.btnCon_Click); // // txtContent // this.txtContent.Location = new System.Drawing.Point(12, 131); this.txtContent.Multiline = true; this.txtContent.Name = "txtContent"; this.txtContent.Size = new System.Drawing.Size(1030, 335); this.txtContent.TabIndex = 1; // // btnSend // this.btnSend.Location = new System.Drawing.Point(947, 494); this.btnSend.Name = "btnSend"; this.btnSend.Size = new System.Drawing.Size(75, 23); this.btnSend.TabIndex = 2; this.btnSend.Text = "发送"; this.btnSend.UseVisualStyleBackColor = true; this.btnSend.Click += new System.EventHandler(this.btnSend_Click); // // txtIp // this.txtIp.Location = new System.Drawing.Point(72, 63); this.txtIp.Name = "txtIp"; this.txtIp.Size = new System.Drawing.Size(447, 25); this.txtIp.TabIndex = 3; // // txtPort // this.txtPort.Location = new System.Drawing.Point(707, 63); this.txtPort.Name = "txtPort"; this.txtPort.Size = new System.Drawing.Size(152, 25); this.txtPort.TabIndex = 4; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(24, 69); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(31, 15); this.label1.TabIndex = 5; this.label1.Text = "IP:"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(646, 69); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(47, 15); this.label2.TabIndex = 6; this.label2.Text = "PORT:"; // // lbMsg // this.lbMsg.AutoSize = true; this.lbMsg.Location = new System.Drawing.Point(24, 498); this.lbMsg.Name = "lbMsg"; this.lbMsg.Size = new System.Drawing.Size(0, 15); this.lbMsg.TabIndex = 7; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1054, 541); this.Controls.Add(this.lbMsg); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.txtPort); this.Controls.Add(this.txtIp); this.Controls.Add(this.btnSend); this.Controls.Add(this.txtContent); this.Controls.Add(this.btnCon); this.Name = "Form1"; this.Text = "测试程序"; this.Load += new System.EventHandler(this.Form1_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btnCon; private System.Windows.Forms.TextBox txtContent; private System.Windows.Forms.Button btnSend; private System.Windows.Forms.TextBox txtIp; private System.Windows.Forms.TextBox txtPort; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label lbMsg; } }