📄 form1.cs
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace WindowsApplication3
{
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtPass;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label lblInfo;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;
public Form1()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.txtPass = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.lblInfo = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(53, 43);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(82, 15);
this.label1.TabIndex = 0;
this.label1.Text = "请输入口令";
//
// txtPass
//
this.txtPass.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.txtPass.Location = new System.Drawing.Point(152, 38);
this.txtPass.Name = "txtPass";
this.txtPass.Size = new System.Drawing.Size(133, 25);
this.txtPass.TabIndex = 1;
this.txtPass.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
//
// button1
//
this.button1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.button1.Location = new System.Drawing.Point(126, 84);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(80, 33);
this.button1.TabIndex = 2;
this.button1.Text = "验证";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// lblInfo
//
this.lblInfo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblInfo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblInfo.Location = new System.Drawing.Point(12, 138);
this.lblInfo.Name = "lblInfo";
this.lblInfo.Size = new System.Drawing.Size(315, 29);
this.lblInfo.TabIndex = 3;
this.lblInfo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(8, 18);
this.ClientSize = new System.Drawing.Size(339, 213);
this.Controls.Add(this.lblInfo);
this.Controls.Add(this.button1);
this.Controls.Add(this.txtPass);
this.Controls.Add(this.label1);
this.Name = "Form1";
this.Text = "验证口令";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private void textBox1_TextChanged(object sender, System.EventArgs e)
{
}
private void button1_Click(object sender, System.EventArgs e)
{
if(txtPass.Text=="abc") //设口令为“abc”
lblInfo.Text="欢迎使用本系统!"; //如果输入正确,显示"欢迎使用本系统!"
else //如果输入不正确
lblInfo.Text="对不起,您的口令有误,您无权使用该系统!";
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -