private void buttonCancel_Click(object sender, EventArgs e)
{
Program.isValidUser = false;
this.Close();
}
private void buttonOK_Click(object sender,EventArgs e)
{
Cryptogram cryptogram=new Cryptogram();
if(TextBoxPassword.Text!=cryptogram.DecryptedString)
{
MessageBox.Show("密码错误", "", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
{
Program.isValidUser=true;
this.Close();
}
}
为什么生成窗口后,取消和确定按钮都没有用
这是program.cs文件
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace 管理系统
{
static class Program
{
public static bool isValidUser;
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Form1 form=new Form1();
form.ShowDialog();
Application.Run(new Form1());
}
}
}
已经建立了加密和解密的类