在UserClosing和this.close上触发关闭事件

时间:2011-04-07 06:43:03

标签: c# .net winforms

我有一个表单,其中有一个LogOutEvent和一个表单结束事件。 这是代码,

private void btnLogOut_Click(object sender, EventArgs e)
{
       DialogResult yesNo = MessageBox.Show(this, "Are you sure you want to Log Off?", "Log Off", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1);

        if (yesNo == DialogResult.Yes)
        {
            new LoginForm();
            this.Close();
            string tst2 = Logout(AgentId, AgentPwd, ExtensionId);
            if (tst2 == "TCF000")
                MessageBox.Show(" Logout Success");
            else
                MessageBox.Show("Logout Failed");
        }
}

表格结束活动

private void MainGUI_FormClosing(Object sender, FormClosingEventArgs e)
{
        if (e.CloseReason == CloseReason.UserClosing)
        {
            DialogResult yesNo = MessageBox.Show(this, "Are you sure you want to Log Off?", "Log Off", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1);

            if (yesNo == DialogResult.Yes)
            { 
                Application.Exit();
            }
            else
            {
                e.Cancel = true;
            }
         }
}

我的问题是当我点击LogOut按钮时,它调用表格结束事件。任何人都可以为此建议更好的代码吗?

当我点击关闭'X'时,它应关闭应用程序,当我点击LogOut时,它应关闭当前窗口并转到登录表单。

2 个答案:

答案 0 :(得分:5)

我确信有更好的解决方案,但这确实有效:

private bool loggingOut;

private void Form1_DoubleClick(object sender, EventArgs e)
{
    this.loggingOut = true;
    this.Close();
    // This is optional as we are closing the form anyway
    this.loggingOut = false;
}

private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
    if (e.CloseReason == CloseReason.UserClosing && !loggingOut)
    {
        // Handle form closing here
    }
}

这允许表单关闭事件处理程序识别另一个方法是否正在调用表单close,并跳过正常处理(如果是)。

或者,您只需Hide表单,然后在用户下次登录时重复使用相同的表单实例。

答案 1 :(得分:2)

好吧......是的!表格正在结束;为什么不会它解雇事件?

如果CloseReason没有帮助,那么只需在您单击注销时将bool字段放到您设置为true的表单上;并在结束事件中检查该字段。