namespace Client { partial class RoomListForm { /// /// 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.lbxRoom = new System.Windows.Forms.ListBox(); this.btnEnter = new System.Windows.Forms.Button(); this.tbxRoomName = new System.Windows.Forms.TextBox(); this.btnCreate = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // lbxRoom // this.lbxRoom.FormattingEnabled = true; this.lbxRoom.ItemHeight = 15; this.lbxRoom.Location = new System.Drawing.Point(12, 27); this.lbxRoom.Name = "lbxRoom"; this.lbxRoom.Size = new System.Drawing.Size(180, 214); this.lbxRoom.TabIndex = 0; // // btnEnter // this.btnEnter.Location = new System.Drawing.Point(12, 247); this.btnEnter.Name = "btnEnter"; this.btnEnter.Size = new System.Drawing.Size(180, 23); this.btnEnter.TabIndex = 1; this.btnEnter.Text = "Enter"; this.btnEnter.UseVisualStyleBackColor = true; this.btnEnter.Click += new System.EventHandler(this.btnEnter_Click); // // tbxRoomName // this.tbxRoomName.Location = new System.Drawing.Point(12, 310); this.tbxRoomName.Name = "tbxRoomName"; this.tbxRoomName.Size = new System.Drawing.Size(180, 23); this.tbxRoomName.TabIndex = 2; // // btnCreate // this.btnCreate.Location = new System.Drawing.Point(12, 339); this.btnCreate.Name = "btnCreate"; this.btnCreate.Size = new System.Drawing.Size(180, 23); this.btnCreate.TabIndex = 3; this.btnCreate.Text = "Create"; this.btnCreate.UseVisualStyleBackColor = true; this.btnCreate.Click += new System.EventHandler(this.btnCreate_Click); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(59, 15); this.label1.TabIndex = 4; this.label1.Text = "Enterance"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(12, 292); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(52, 15); this.label2.TabIndex = 5; this.label2.Text = "Creation"; // // RoomListForm // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(204, 375); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.btnCreate); this.Controls.Add(this.tbxRoomName); this.Controls.Add(this.btnEnter); this.Controls.Add(this.lbxRoom); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "RoomListForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Room list"; this.Activated += new System.EventHandler(this.RoomListForm_Activated); this.ResumeLayout(false); this.PerformLayout(); } #endregion private ListBox lbxRoom; private Button btnEnter; private TextBox tbxRoomName; private Button btnCreate; private Label label1; private Label label2; } }