namespace EapFileUploadClient { partial class Frm_Client { /// /// 必需的设计器变量。 /// 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.label4 = new System.Windows.Forms.Label(); this.txtSendMsg = new System.Windows.Forms.TextBox(); this.txtMsg = new System.Windows.Forms.ListBox(); this.button5 = new System.Windows.Forms.Button(); this.button4 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); this.button1 = new System.Windows.Forms.Button(); this.txtSelectFile = new System.Windows.Forms.TextBox(); this.txtPort = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.txtIp = new System.Windows.Forms.TextBox(); this.label3 = new System.Windows.Forms.Label(); this.txtName = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(12, 353); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(77, 12); this.label4.TabIndex = 31; this.label4.Text = "输入发送消息"; // // txtSendMsg // this.txtSendMsg.Location = new System.Drawing.Point(95, 344); this.txtSendMsg.Multiline = true; this.txtSendMsg.Name = "txtSendMsg"; this.txtSendMsg.Size = new System.Drawing.Size(460, 32); this.txtSendMsg.TabIndex = 30; // // txtMsg // this.txtMsg.FormattingEnabled = true; this.txtMsg.ItemHeight = 12; this.txtMsg.Location = new System.Drawing.Point(12, 18); this.txtMsg.Name = "txtMsg"; this.txtMsg.Size = new System.Drawing.Size(543, 304); this.txtMsg.TabIndex = 28; // // button5 // this.button5.Location = new System.Drawing.Point(666, 396); this.button5.Name = "button5"; this.button5.Size = new System.Drawing.Size(179, 40); this.button5.TabIndex = 27; this.button5.Text = "发送文件"; this.button5.UseVisualStyleBackColor = true; this.button5.Click += new System.EventHandler(this.btnSendFile_Click); // // button4 // this.button4.Location = new System.Drawing.Point(666, 325); this.button4.Name = "button4"; this.button4.Size = new System.Drawing.Size(179, 40); this.button4.TabIndex = 26; this.button4.Text = "发送信息"; this.button4.UseVisualStyleBackColor = true; this.button4.Click += new System.EventHandler(this.btnSendMsg_Click); // // button2 // this.button2.BackColor = System.Drawing.Color.DarkSeaGreen; this.button2.Location = new System.Drawing.Point(666, 243); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(179, 40); this.button2.TabIndex = 24; this.button2.Text = "连接服务器"; this.button2.UseVisualStyleBackColor = false; this.button2.Click += new System.EventHandler(this.btnConnect_Click); // // button1 // this.button1.Location = new System.Drawing.Point(12, 405); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(75, 23); this.button1.TabIndex = 23; this.button1.Text = "选择文件"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.btnSelectFile_Click); // // txtSelectFile // this.txtSelectFile.Location = new System.Drawing.Point(93, 407); this.txtSelectFile.Name = "txtSelectFile"; this.txtSelectFile.Size = new System.Drawing.Size(462, 21); this.txtSelectFile.TabIndex = 22; // // txtPort // this.txtPort.Location = new System.Drawing.Point(666, 67); this.txtPort.Name = "txtPort"; this.txtPort.Size = new System.Drawing.Size(179, 21); this.txtPort.TabIndex = 20; this.txtPort.Text = "8899"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(631, 70); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(29, 12); this.label2.TabIndex = 19; this.label2.Text = "PORT"; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(637, 18); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(23, 12); this.label1.TabIndex = 18; this.label1.Text = "IP:"; // // txtIp // this.txtIp.Location = new System.Drawing.Point(666, 15); this.txtIp.Name = "txtIp"; this.txtIp.Size = new System.Drawing.Size(179, 21); this.txtIp.TabIndex = 17; this.txtIp.Text = "10.71.26.56"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(619, 152); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(41, 12); this.label3.TabIndex = 21; this.label3.Text = "昵称:"; // // txtName // this.txtName.Location = new System.Drawing.Point(666, 149); this.txtName.Name = "txtName"; this.txtName.Size = new System.Drawing.Size(179, 21); this.txtName.TabIndex = 32; // // Frm_Client // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(870, 458); this.Controls.Add(this.txtName); this.Controls.Add(this.label4); this.Controls.Add(this.txtSendMsg); this.Controls.Add(this.txtMsg); this.Controls.Add(this.button5); this.Controls.Add(this.button4); this.Controls.Add(this.button2); this.Controls.Add(this.button1); this.Controls.Add(this.txtSelectFile); this.Controls.Add(this.label3); this.Controls.Add(this.txtPort); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.txtIp); this.Name = "Frm_Client"; this.Text = "Frm_Client"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label4; private System.Windows.Forms.TextBox txtSendMsg; private System.Windows.Forms.ListBox txtMsg; private System.Windows.Forms.Button button5; private System.Windows.Forms.Button button4; private System.Windows.Forms.Button button2; private System.Windows.Forms.Button button1; private System.Windows.Forms.TextBox txtSelectFile; private System.Windows.Forms.TextBox txtPort; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox txtIp; private System.Windows.Forms.Label label3; private System.Windows.Forms.TextBox txtName; } }