呵呵,我也是北大青鸟的学员,S1做过这个项目.下面是解决方法: 1.关闭窗体可以使用Form中的FormClosing事件,2.如果让注册窗口只出现一个,可以使用Form的ShowDialog方法.(模式窗口)模式窗体使用方法: //1.实例化注册页面RegisterForm registerForm = new RegisterForm();//2.模式窗口显示注册页面registerForm.ShowDialog(); 希望楼主采纳.
呵呵,你是北大青鸟的么??在窗体的closing事件里面private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
{ DialogResult dlr = MessageBox.Show("您确认要退出吗?", "操作提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (dlr == DialogResult.Yes)
{
Application.Exit();
}
else
{ e.Cancel = true; }
}