在登录界面登录成功后.登录界面没有关闭.还请各位指教:
private void button1_Click(object sender, System.EventArgs e)
{
if (txtName.Text == "11" && txtPsw.Text == "11")
{
Login lo = new Login();//构造登录界面对象
lo.Close();
MainFrm main = new MainFrm();//构造主界面对象
main.Show();
}
else
{
MessageBox.Show("用户号或密码错误,请重新输入");
txtPsw.Text="";
txtName.Focus();
}
}
[此贴子已经被作者于2006-4-2 10:20:15编辑过]