在Form_FormClosing事件中设置e.Cancel = true后,c#WinForms表单仍然关闭

时间:2011-08-17 11:14:40

标签: c# winforms formclosing

这是有问题的代码:

    private void FormAccounting_FormClosing(object sender, FormClosingEventArgs e)
    {
        Properties.Settings.Default.FormAccountingLocation = this.Location;
        Properties.Settings.Default.Save();
        if (IsEditing)
        {
            MessageBox.Show("Please save or cancel open transactions before closing the accounting window.", "Open Transactions", MessageBoxButtons.OK, MessageBoxIcon.Information);
            e.Cancel = true;
        }
    }

我已将断点添加到e.Cancel = true;行以确保其正在执行。

单击“确定”后,表单立即关闭。

以下是调用FormAccounting的代码:

    private void buttonAccounts_Click(object sender, EventArgs e)
    {
        FormAccounting NewFormAccounting = new FormAccounting();
        NewFormAccounting.Show();
    }

1 个答案:

答案 0 :(得分:13)

取消表单关闭事件可以防止:

  1. 用户关闭表单
  2. Application.Exit退出应用程序
  3. 在表单
  4. 上调用Form.Close的代码

    但它无法阻止:

    1. 用户关闭申请表的主要表格
    2. 代码调用Form.Dispose在表单
    3. 代码调用Form.Close在应用程序的主窗口
    4. 最后3个案例甚至没有触发非主表单上的表单关闭事件,因此表单消失而没有机会取消它。也许你的应用程序导致表单首先以前三种方式之一关闭,触发事件,然后以第二种方式之一(或类似方式),这不会触发事件并强制关闭表单

      修改 将此函数添加到表单的代码中,它将允许您在调试器中查看窗口关闭时调用堆栈的外观,以便您可以看到实际导致它的原因:

        protected override void DestroyHandle()
        {
           System.Diagnostics.Debugger.Break();
           base.DestroyHandle();
        }