You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tcpipSocket/Chat/Client/RoomListForm.Designer.cs

139 lines
4.5 KiB

2 years ago
namespace Client
{
partial class RoomListForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
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.btnRefresh = new System.Windows.Forms.Button();
2 years ago
this.SuspendLayout();
//
// lbxRoom
//
this.lbxRoom.FormattingEnabled = true;
this.lbxRoom.ItemHeight = 15;
this.lbxRoom.Location = new System.Drawing.Point(12, 31);
2 years ago
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, 251);
2 years ago
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, 13);
2 years ago
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";
//
// btnRefresh
//
this.btnRefresh.Location = new System.Drawing.Point(134, 5);
this.btnRefresh.Name = "btnRefresh";
this.btnRefresh.Size = new System.Drawing.Size(58, 23);
this.btnRefresh.TabIndex = 1;
this.btnRefresh.Text = "Refresh";
this.btnRefresh.UseVisualStyleBackColor = true;
this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
//
2 years ago
// 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.btnRefresh);
2 years ago
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.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.RoomListForm_FormClosing);
2 years ago
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private ListBox lbxRoom;
private Button btnEnter;
private TextBox tbxRoomName;
private Button btnCreate;
private Label label1;
private Label label2;
private Button btnRefresh;
2 years ago
}
}