建立一个窗体,三个控件:
一个Label;
一个textbox控件,Name为txtPassWord
一个button按钮,Name为btnOK
完整程序如下(程序已经测试,应该可以满足你的要求)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace mimachuangti
{
public partial class Form1 : Form
{
int count = 0; //记录点击次数
string strpassword = "123";//初始密码
public Form1()
{
InitializeComponent();
}
private void btnOK_Click(object sender, EventArgs e) //按钮响应程序
{
if (txtPassWord.Text == strpassword)
{
MessageBox.Show("欢迎进入");
}
else
{
if (count < 2)
{
MessageBox.Show("密码不正确,请重新输入");
txtPassWord.Focus();
count++;
}
else
{
MessageBox.Show("输入错误密码超过三次,系统即将关闭");
this.Close();
}
}
}
}
}
思路:while循环中判断输入的字符串是否与已经保存的字符串一致,若是一致呢,加载窗口显示欢迎进入,否则显示密码不正确。累加输入错误的次数,若超过三次则使用close关闭本窗口。
吊死扶伤