6

我有一个带有多个表单的小应用程序,每个表单都会在 FormClosing 事件期间保存其窗格布局。

当主窗体最小化时,某些窗体需要保留在屏幕上,因此它们以无主方式打开form.Show(),而不是form.Show(this).

但是,这会影响FormClosing行为 - 当用户使用红色 X 退出时,FormClosing不会为无主表单触发事件。

Application.Exit()确实可以根据需要工作,但是取消FormClosing主窗体中的事件并调用 Application.Exit() 会导致FormClosing在除无主窗体之外的所有内容上被调用两次。

我可能可以在主窗体的 FormClosing 事件中迭代 OpenForms 并保存需要保存的任何内容,但这似乎有点 hack。有没有办法让 X 的行为方式与 Application.Exit() 相同?

下面的代码演示了这个问题:

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();

        this.Text = "Main";

        Form ownedForm = new Form { Text = "Owned" };
        ownedForm.FormClosing += (s, e) => { System.Diagnostics.Debug.WriteLine("FormClosing owned form"); };
        ownedForm.Show(this);

        Form ownerlessForm = new Form { Text = "Ownerless" };
        ownerlessForm.FormClosing += (s, e) => { System.Diagnostics.Debug.WriteLine("FormClosing ownerless form"); };
        ownerlessForm.Show();

        this.FormClosing += (s, e) =>
        {
            System.Diagnostics.Debug.WriteLine("FormClosing main form");

            // fix below doesn't work as needed!
            //if (e.CloseReason == CloseReason.UserClosing)
            //{
            //    e.Cancel = true;
            //    Application.Exit();
            //}
        };
    }
}
4

1 回答 1

3

向主窗体的处理程序添加一个事件处理程序,以在主窗体FormClosing关闭时关闭无主窗体:

ownerlessForm.Show(); //right after this line that you already have
FormClosing += (s, e) => ownerlessForm.Close(); //add this

这将确保它们优雅地关闭,并使它们的关闭事件运行,而不是让主线程结束并在不让这些窗体优雅地关闭的情况下拆除进程。

于 2013-10-04T17:27:03.747 回答