我打开MS Access时弹出一个登录窗体。如果用户决定离开,我有一个取消按钮,关闭应用程序和MS Access:
private void button2_Click(object sender, EventArgs e)
{
Application.Exit();
}
但我还要补充一点,如果用户终止Windows窗体,它也将终止MS Access。
即,如果windowForm终止,则表示Application.Exit
答案 0 :(得分:1)
向表单的“事件属性”中的FormClosing
事件添加一个函数或手动:
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
然后写:
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
Application.Exit();
}