namespace SocketChat.Client { partial class ChatClient { /// /// 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.btnClose = new System.Windows.Forms.Button(); this.btnSend = new System.Windows.Forms.Button(); this.txtSendMsg = new System.Windows.Forms.RichTextBox(); this.txtChatMsg = new System.Windows.Forms.RichTextBox(); this.lb_online = new System.Windows.Forms.Label(); this.lbx_online = new System.Windows.Forms.ListBox(); this.TcpInfo = new System.Windows.Forms.RichTextBox(); this.lb_receive = new System.Windows.Forms.Label(); this.lb_log = new System.Windows.Forms.Label(); this.lb_send = new System.Windows.Forms.Label(); this.SuspendLayout(); // // btnClose // this.btnClose.Location = new System.Drawing.Point(495, 294); this.btnClose.Name = "btnClose"; this.btnClose.Size = new System.Drawing.Size(75, 32); this.btnClose.TabIndex = 11; this.btnClose.Text = "关闭"; this.btnClose.UseVisualStyleBackColor = true; this.btnClose.Click += new System.EventHandler(this.btnClose_Click); // // btnSend // this.btnSend.Location = new System.Drawing.Point(495, 245); this.btnSend.Name = "btnSend"; this.btnSend.Size = new System.Drawing.Size(75, 35); this.btnSend.TabIndex = 10; this.btnSend.Text = "发送"; this.btnSend.UseVisualStyleBackColor = true; this.btnSend.Click += new System.EventHandler(this.btnSend_Click); // // txtSendMsg // this.txtSendMsg.Location = new System.Drawing.Point(167, 245); this.txtSendMsg.Name = "txtSendMsg"; this.txtSendMsg.Size = new System.Drawing.Size(322, 81); this.txtSendMsg.TabIndex = 9; this.txtSendMsg.Text = ""; // // txtChatMsg // this.txtChatMsg.Location = new System.Drawing.Point(167, 25); this.txtChatMsg.Name = "txtChatMsg"; this.txtChatMsg.Size = new System.Drawing.Size(403, 193); this.txtChatMsg.TabIndex = 8; this.txtChatMsg.Text = ""; this.txtChatMsg.WordWrap = false; // // lb_online // this.lb_online.AutoSize = true; this.lb_online.Location = new System.Drawing.Point(9, 10); this.lb_online.Name = "lb_online"; this.lb_online.Size = new System.Drawing.Size(65, 12); this.lb_online.TabIndex = 7; this.lb_online.Text = "在线列表:"; // // lbx_online // this.lbx_online.FormattingEnabled = true; this.lbx_online.ItemHeight = 12; this.lbx_online.Location = new System.Drawing.Point(9, 25); this.lbx_online.Name = "lbx_online"; this.lbx_online.Size = new System.Drawing.Size(125, 304); this.lbx_online.TabIndex = 6; // // TcpInfo // this.TcpInfo.Location = new System.Drawing.Point(600, 25); this.TcpInfo.Name = "TcpInfo"; this.TcpInfo.RightToLeft = System.Windows.Forms.RightToLeft.Yes; this.TcpInfo.Size = new System.Drawing.Size(234, 193); this.TcpInfo.TabIndex = 12; this.TcpInfo.Text = ""; this.TcpInfo.WordWrap = false; // // lb_receive // this.lb_receive.AutoSize = true; this.lb_receive.Location = new System.Drawing.Point(165, 9); this.lb_receive.Name = "lb_receive"; this.lb_receive.Size = new System.Drawing.Size(65, 12); this.lb_receive.TabIndex = 13; this.lb_receive.Text = "接收消息:"; // // lb_log // this.lb_log.AutoSize = true; this.lb_log.Location = new System.Drawing.Point(616, 9); this.lb_log.Name = "lb_log"; this.lb_log.Size = new System.Drawing.Size(35, 12); this.lb_log.TabIndex = 14; this.lb_log.Text = "Log:"; // // lb_send // this.lb_send.AutoSize = true; this.lb_send.Location = new System.Drawing.Point(165, 229); this.lb_send.Name = "lb_send"; this.lb_send.Size = new System.Drawing.Size(65, 12); this.lb_send.TabIndex = 15; this.lb_send.Text = "发送消息:"; // // ChatClient // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(846, 350); this.Controls.Add(this.lb_send); this.Controls.Add(this.lb_log); this.Controls.Add(this.lb_receive); this.Controls.Add(this.TcpInfo); this.Controls.Add(this.btnClose); this.Controls.Add(this.btnSend); this.Controls.Add(this.txtSendMsg); this.Controls.Add(this.txtChatMsg); this.Controls.Add(this.lb_online); this.Controls.Add(this.lbx_online); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Name = "ChatClient"; this.Text = "客户端"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ChatClient_FormClosing); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btnClose; private System.Windows.Forms.Button btnSend; private System.Windows.Forms.RichTextBox txtSendMsg; private System.Windows.Forms.RichTextBox txtChatMsg; private System.Windows.Forms.Label lb_online; private System.Windows.Forms.ListBox lbx_online; private System.Windows.Forms.RichTextBox TcpInfo; private System.Windows.Forms.Label lb_receive; private System.Windows.Forms.Label lb_log; private System.Windows.Forms.Label lb_send; } }