做了两个简单的窗体,分别是Form1和Form2.
Form1是用来登陆的窗口,由于没有连接数据库,所以只对特定的一组账号和密码(admin,qazwsx)做判断,若正确,则跳转到Form2窗口,若不成功,则报错。
至于Form1怎么调用Form2,则是通过以下语句:
Form2 Frm = new Form2();
this.Hide();
Frm.ShowDialog();
以下是Form1的完整程序:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace denglu
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text.Equals("admin") && textBox2.Text.Equals("qazwsx"))
{
//跳转到另一个窗口
Form2 Frm = new Form2();
this.Hide();
Frm.ShowDialog();
}
else
{
MessageBox.Show("您输入的账号或密码错误,请重新输入!");
}
}
}
}