C# Windows application prevents Windows from shutting down / logging off

折月煮酒 提交于 2019-12-09 00:50:01

问题


I have written a C# Windows Forms application, not a service (it is only used when the user is logged in and has a graphical user interface) that has a background thread running in an infinite loop.

When I try shutting down Windows (7) however, it tells me the program is preventing it from shutting down or logging off and asks me whether I want to force a shutdown.

Now, is there any possibility for my program to become aware (get a handler) of Windows trying to quit it or to log off?

So, what I need is to make the application realize when Windows tries to quit.

Thanks in advance.

EDIT: Thanks for the great advice! Is it in any way possible to use the idea with the form closing event if it has a CANCEL event handler?


回答1:


public Form1()
{
    InitializeComponent();

    this.FormClosing += new FormClosingEventHandler(Form1_FormClosing);
}

void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
    // Or any of the other reasons suitable for what you want to accomplish
    if (e.CloseReason == CloseReason.WindowsShutDown)
    {
        //Stop your infinite loop
    }
}



回答2:


You call that thread a "background thread" but does it have IsBackground = true; ?
The system will only stop a thread that does.




回答3:


I think Capture console exit C# should also be usable in your scenario.

Apart from that, maybe it is sufficient to set up your thread as background thread?




回答4:


Take a look at the Microsoft.Win32.SystemEvents.SessionEnding event.



来源:https://stackoverflow.com/questions/2498432/c-sharp-windows-application-prevents-windows-from-shutting-down-logging-off

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!