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.
105 lines
3.0 KiB
105 lines
3.0 KiB
namespace Client
|
|
{
|
|
partial class LoginForm
|
|
{
|
|
/// <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.label1 = new System.Windows.Forms.Label();
|
|
this.tbxId = new System.Windows.Forms.TextBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.tbxNickname = new System.Windows.Forms.TextBox();
|
|
this.btnLogin = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 16);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(19, 15);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "ID";
|
|
//
|
|
// tbxId
|
|
//
|
|
this.tbxId.Location = new System.Drawing.Point(79, 12);
|
|
this.tbxId.Name = "tbxId";
|
|
this.tbxId.Size = new System.Drawing.Size(181, 23);
|
|
this.tbxId.TabIndex = 1;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(12, 45);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(61, 15);
|
|
this.label2.TabIndex = 0;
|
|
this.label2.Text = "Nickname";
|
|
//
|
|
// tbxNickname
|
|
//
|
|
this.tbxNickname.Location = new System.Drawing.Point(79, 41);
|
|
this.tbxNickname.Name = "tbxNickname";
|
|
this.tbxNickname.Size = new System.Drawing.Size(181, 23);
|
|
this.tbxNickname.TabIndex = 1;
|
|
//
|
|
// btnLogin
|
|
//
|
|
this.btnLogin.Location = new System.Drawing.Point(12, 86);
|
|
this.btnLogin.Name = "btnLogin";
|
|
this.btnLogin.Size = new System.Drawing.Size(248, 23);
|
|
this.btnLogin.TabIndex = 2;
|
|
this.btnLogin.Text = "Login";
|
|
this.btnLogin.UseVisualStyleBackColor = true;
|
|
this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
|
|
//
|
|
// LoginForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(275, 121);
|
|
this.Controls.Add(this.btnLogin);
|
|
this.Controls.Add(this.tbxNickname);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.tbxId);
|
|
this.Controls.Add(this.label1);
|
|
this.Name = "LoginForm";
|
|
this.Text = "Login";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private TextBox tbxId;
|
|
private Label label2;
|
|
private TextBox tbxNickname;
|
|
private Button btnLogin;
|
|
}
|
|
} |