如何在关闭表单时关闭整个应用程序?

How do I close the whole application when I close a form?

我的应用程序中有两个表单,登录和仪表板。登录后,将加载仪表板表单并使用 this.Hide 登录“关闭”。如果我使用 X 按钮关闭仪表板,应用程序将继续 运行 但没有任何显示。

使用 Form2 [仪表板] 事件。

    private void Form2_FormClosed(object sender, FormClosedEventArgs e)
    {
        // when form closed
        Application.Exit();
    }

    private void Form2_FormClosing(object sender, FormClosingEventArgs e)
    {
        // before form close
        Application.Exit();
    }