namespace Client_GUI
{
partial class LoginUI
{
///
/// 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()
{
tb_Name = new TextBox();
label1 = new Label();
btn_Login = new Button();
SuspendLayout();
//
// tb_Name
//
tb_Name.Location = new Point(50, 12);
tb_Name.Name = "tb_Name";
tb_Name.Size = new Size(128, 23);
tb_Name.TabIndex = 0;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 15);
label1.Name = "label1";
label1.Size = new Size(32, 17);
label1.TabIndex = 1;
label1.Text = "昵称";
//
// btn_Login
//
btn_Login.Location = new Point(12, 46);
btn_Login.Name = "btn_Login";
btn_Login.Size = new Size(166, 23);
btn_Login.TabIndex = 2;
btn_Login.Text = "登录";
btn_Login.UseVisualStyleBackColor = true;
btn_Login.Click += btn_Login_Click;
//
// LoginUI
//
AutoScaleDimensions = new SizeF(7F, 17F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(191, 81);
Controls.Add(btn_Login);
Controls.Add(label1);
Controls.Add(tb_Name);
FormBorderStyle = FormBorderStyle.FixedToolWindow;
Name = "LoginUI";
Text = "Login";
FormClosing += LoginUI_FormClosing;
Shown += LoginUI_Shown;
ResumeLayout(false);
PerformLayout();
}
#endregion
private TextBox tb_Name;
private Label label1;
private Button btn_Login;
}
}