单击角落里的大红色 X 时不会调用 FormClosing

发布于 2024-11-30 01:04:35 字数 448 浏览 5 评论 0原文

我发现了这个:

表单右上角带有 X 的按钮,如何捕获此事件 @ C#

这表示我应该使用 FormClosing 事件来找出窗口何时因以下原因而关闭单击 X。

但我的事件代码永远不会被调用:

private void MainWin_FormClosing(Object sender, FormClosingEventArgs e)
{
    m_closeThread = true;
    Application.Exit();
}

我一定错过了一些基本的东西,但我不知道是什么。

I found this:

Button with an X at the upper-right corner of the form, how to catch this event @ C#

Which says I should use the FormClosing event to find out when the window is closing because of a click on the X.

But my event code never gets called:

private void MainWin_FormClosing(Object sender, FormClosingEventArgs e)
{
    m_closeThread = true;
    Application.Exit();
}

I must be missing something basic, but I don't know what.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

咆哮 2024-12-07 01:04:35

您必须订阅该事件,例如:

this.FormClosing += this.MainWin_FormClosing;

在表单的构造函数(或某处)中,或者使用:

override void OnFormClosing(FormClosingEventArgs e)
{
    m_closeThread = true;
    Application.Exit();
}

You must either subscribe to the event like:

this.FormClosing += this.MainWin_FormClosing;

in the form's constructor (or somewhere), or use:

override void OnFormClosing(FormClosingEventArgs e)
{
    m_closeThread = true;
    Application.Exit();
}
倾听心声的旋律 2024-12-07 01:04:35

确保您正确订阅 FormClosing 事件。

您的 MainWin 对话框中(通常是在构造函数中)必须有这样的内容:

this.FormClosing += new FormClosingEventHandler(MainWin_FormClosing);

希望它有帮助。

Make sure that you're correctly subscribing to the FormClosing event.

You must have on your MainWin dialog (tipically in the constructor), something like this:

this.FormClosing += new FormClosingEventHandler(MainWin_FormClosing);

Hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文