📄 frmlock.designer.cs
字号:
namespace Hotel.UI
{
partial class frmLock
{
/// <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()
{
this.label1 = new System.Windows.Forms.Label();
this.txtPwd = new System.Windows.Forms.TextBox();
this.btnUndo = new System.Windows.Forms.Button();
this.btnClose = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("楷体_GB2312", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(57, 62);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(125, 19);
this.label1.TabIndex = 0;
this.label1.Text = "请输入密码:";
//
// txtPwd
//
this.txtPwd.Location = new System.Drawing.Point(27, 96);
this.txtPwd.Name = "txtPwd";
this.txtPwd.Size = new System.Drawing.Size(189, 21);
this.txtPwd.TabIndex = 2;
this.txtPwd.UseSystemPasswordChar = true;
this.txtPwd.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPwd_KeyPress);
//
// btnUndo
//
this.btnUndo.Location = new System.Drawing.Point(27, 127);
this.btnUndo.Name = "btnUndo";
this.btnUndo.Size = new System.Drawing.Size(90, 27);
this.btnUndo.TabIndex = 3;
this.btnUndo.Text = "解锁(&Y)";
this.btnUndo.UseVisualStyleBackColor = true;
this.btnUndo.Click += new System.EventHandler(this.btnUndo_Click);
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(126, 127);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(90, 27);
this.btnClose.TabIndex = 3;
this.btnClose.Text = "关闭系统(&C)";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.button2_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.Transparent;
this.label2.ForeColor = System.Drawing.Color.Red;
this.label2.Location = new System.Drawing.Point(12, 34);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(233, 12);
this.label2.TabIndex = 9;
this.label2.Text = "系统已锁定,如需进入系统请输入正确密码!";
//
// label3
//
this.label3.AutoSize = true;
this.label3.BackColor = System.Drawing.Color.Transparent;
this.label3.Font = new System.Drawing.Font("新宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label3.ForeColor = System.Drawing.Color.Red;
this.label3.Location = new System.Drawing.Point(1, 9);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(77, 14);
this.label3.TabIndex = 8;
this.label3.Text = "温馨提示:";
//
// frmLock
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(249, 167);
this.Controls.Add(this.label2);
this.Controls.Add(this.label3);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.btnUndo);
this.Controls.Add(this.txtPwd);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.MaximizeBox = false;
this.Name = "frmLock";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "屏幕已锁";
this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.frmLock_MouseMove);
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.frmLock_MouseDown);
this.Load += new System.EventHandler(this.frmLock_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtPwd;
private System.Windows.Forms.Button btnUndo;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -