📄 loginform.designer.cs
字号:
namespace MobileDevelopersHandbook
{
partial class LoginForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.menuItemSubmit = new System.Windows.Forms.MenuItem();
this.label1 = new System.Windows.Forms.Label();
this.textBoxUsername = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.textBoxPassword = new System.Windows.Forms.TextBox();
this.labelIncorrect = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.menuItemSubmit);
//
// menuItemSubmit
//
this.menuItemSubmit.Text = "Submit";
this.menuItemSubmit.Click += new System.EventHandler(this.menuItemSubmit_Click);
//
// label1
//
this.label1.Location = new System.Drawing.Point(3, 12);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(152, 22);
this.label1.Text = "Username:";
//
// textBoxUsername
//
this.textBoxUsername.Location = new System.Drawing.Point(4, 27);
this.textBoxUsername.Name = "textBoxUsername";
this.textBoxUsername.Size = new System.Drawing.Size(152, 22);
this.textBoxUsername.TabIndex = 1;
//
// label2
//
this.label2.Location = new System.Drawing.Point(4, 66);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(152, 22);
this.label2.Text = "Password:";
//
// textBoxPassword
//
this.textBoxPassword.Location = new System.Drawing.Point(4, 80);
this.textBoxPassword.Name = "textBoxPassword";
this.textBoxPassword.PasswordChar = '*';
this.textBoxPassword.Size = new System.Drawing.Size(152, 22);
this.textBoxPassword.TabIndex = 3;
this.textBoxPassword.GotFocus += new System.EventHandler(this.textBoxPassword_GotFocus);
//
// labelIncorrect
//
this.labelIncorrect.Font = new System.Drawing.Font("Segoe Condensed", 9F, System.Drawing.FontStyle.Regular);
this.labelIncorrect.ForeColor = System.Drawing.Color.Red;
this.labelIncorrect.Location = new System.Drawing.Point(4, 118);
this.labelIncorrect.Name = "labelIncorrect";
this.labelIncorrect.Size = new System.Drawing.Size(152, 37);
this.labelIncorrect.Text = "Username and/or password incorrect. Please retry.";
this.labelIncorrect.Visible = false;
//
// LoginForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(176, 180);
this.Controls.Add(this.labelIncorrect);
this.Controls.Add(this.textBoxPassword);
this.Controls.Add(this.label2);
this.Controls.Add(this.textBoxUsername);
this.Controls.Add(this.label1);
this.Menu = this.mainMenu1;
this.Name = "LoginForm";
this.Text = "Login";
this.Load += new System.EventHandler(this.LoginForm_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.MenuItem menuItemSubmit;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textBoxUsername;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox textBoxPassword;
private System.Windows.Forms.Label labelIncorrect;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -