环境
编译器:VS2022
目标框架:.netFromwork 4.6.1
页面关键代码
登录按钮点击事件代码
private void Login_Btn_Click(object sender, EventArgs e)
{
if (String.IsNullOrEmpty(this.UserNameTextBox.Text))
{
//判断用户名是否为空
MessageBox.Show("用户名不能为空");
}
else if (String.IsNullOrEmpty(this.PassWordTextBox.Text))
{
//判断密码是否为空
MessageBox.Show("密码不能为空");
}
else if (!this.UserNameTextBox.Text.Equals("1"))//Equals("1") 判断结果是否相等
{
//判断用户名是否正确
MessageBox.Show("用户名不存在");
}
else if (!this.PassWordTextBox.Text.Equals("1"))
{
//判断密码是否正确
MessageBox.Show("密码不正确");
}
else
{
//都没问题开始页面跳转
if (this.ChooseComboBox.Text.Equals("窗口1"))
{
Form2 f2 = new Form2();
this.Hide();//隐藏窗口
f2.ShowDialog();//显示生成条码窗口
this.Dispose();//释放窗口,若连接数据库 使用Close()
}
else if (this.ChooseComboBox.Text.Equals("窗口2"))
{
Form3 f3 = new Form3();
this.Hide();//隐藏窗口
f3.ShowDialog();//显示生成条码窗口
this.Dispose();//释放窗口,若连接数据库 使用Close()
}
else
{
MessageBox.Show("请选择进入的窗口");
}
}
}
Proaram.cs 代码中是打开的登录页面
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Longin_form());//运行时显示的窗体
}
项目代码
链接:https://pan.baidu.com/s/124q7eVti-n7i6aAmnOGjVQ
提取码:2ei8