namespace Client { partial class ChatRoomForm { /// /// 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.lbxMsg = new System.Windows.Forms.ListBox(); this.tbxMsg = new System.Windows.Forms.TextBox(); this.btmSend = new System.Windows.Forms.Button(); this.lbxUser = new System.Windows.Forms.ListBox(); this.SuspendLayout(); // // lbxMsg // this.lbxMsg.FormattingEnabled = true; this.lbxMsg.ItemHeight = 15; this.lbxMsg.Location = new System.Drawing.Point(12, 12); this.lbxMsg.Name = "lbxMsg"; this.lbxMsg.Size = new System.Drawing.Size(380, 349); this.lbxMsg.TabIndex = 0; // // tbxMsg // this.tbxMsg.Location = new System.Drawing.Point(12, 368); this.tbxMsg.Name = "tbxMsg"; this.tbxMsg.Size = new System.Drawing.Size(318, 23); this.tbxMsg.TabIndex = 1; // // btmSend // this.btmSend.Location = new System.Drawing.Point(336, 368); this.btmSend.Name = "btmSend"; this.btmSend.Size = new System.Drawing.Size(56, 23); this.btmSend.TabIndex = 2; this.btmSend.Text = "send"; this.btmSend.UseVisualStyleBackColor = true; this.btmSend.Click += new System.EventHandler(this.btmSend_Click); // // lbxUser // this.lbxUser.FormattingEnabled = true; this.lbxUser.ItemHeight = 15; this.lbxUser.Location = new System.Drawing.Point(398, 12); this.lbxUser.Name = "lbxUser"; this.lbxUser.Size = new System.Drawing.Size(102, 379); this.lbxUser.TabIndex = 0; // // ChatRoomForm // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(512, 404); this.Controls.Add(this.btmSend); this.Controls.Add(this.tbxMsg); this.Controls.Add(this.lbxUser); this.Controls.Add(this.lbxMsg); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "ChatRoomForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "CharRoomForm"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private ListBox lbxMsg; private TextBox tbxMsg; private Button btmSend; private ListBox lbxUser; } }