📄 frmlogin.designer.cs
字号:
namespace SMS.Forms
{
partial class frmLogin
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLogin));
this.btnLogin = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtLoginPwd = new System.Windows.Forms.TextBox();
this.txtLoginName = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// btnLogin
//
this.btnLogin.BackColor = System.Drawing.Color.White;
this.btnLogin.Image = global::SMS.Properties.Resources.login_1;
this.btnLogin.Location = new System.Drawing.Point(70, 159);
this.btnLogin.Name = "btnLogin";
this.btnLogin.Size = new System.Drawing.Size(66, 26);
this.btnLogin.TabIndex = 0;
this.btnLogin.UseVisualStyleBackColor = false;
this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
//
// btnCancel
//
this.btnCancel.BackColor = System.Drawing.Color.White;
this.btnCancel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
this.btnCancel.Image = global::SMS.Properties.Resources.b2;
this.btnCancel.Location = new System.Drawing.Point(179, 159);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(64, 26);
this.btnCancel.TabIndex = 1;
this.btnCancel.UseVisualStyleBackColor = false;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.White;
this.label1.Location = new System.Drawing.Point(68, 91);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 2;
this.label1.Text = "用户名:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.White;
this.label2.Location = new System.Drawing.Point(68, 129);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 12);
this.label2.TabIndex = 3;
this.label2.Text = "密 码:";
//
// txtLoginPwd
//
this.txtLoginPwd.Location = new System.Drawing.Point(127, 120);
this.txtLoginPwd.Name = "txtLoginPwd";
this.txtLoginPwd.PasswordChar = '*';
this.txtLoginPwd.Size = new System.Drawing.Size(128, 21);
this.txtLoginPwd.TabIndex = 4;
this.txtLoginPwd.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtLoginPwd_KeyPress);
//
// txtLoginName
//
this.txtLoginName.Location = new System.Drawing.Point(127, 82);
this.txtLoginName.Name = "txtLoginName";
this.txtLoginName.Size = new System.Drawing.Size(128, 21);
this.txtLoginName.TabIndex = 5;
//
// frmLogin
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.ClientSize = new System.Drawing.Size(325, 209);
this.Controls.Add(this.txtLoginName);
this.Controls.Add(this.txtLoginPwd);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnLogin);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "frmLogin";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "frmLogin";
this.Load += new System.EventHandler(this.frmLogin_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnLogin;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtLoginPwd;
private System.Windows.Forms.TextBox txtLoginName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -