开发者

Catch windows shutdown event in a wpf application

开发者 https://www.devze.com 2023-03-29 19:52 出处:网络
I hav开发者_JAVA技巧e a c# WPF application that needs to save data when it closes. The Window Closing/Closed events work fine if the user closes the program, but they do not get called if the user log

I hav开发者_JAVA技巧e a c# WPF application that needs to save data when it closes. The Window Closing/Closed events work fine if the user closes the program, but they do not get called if the user logs off/shutdown the computer.

I have found ways to catch this event in winforms programs (here, and here). but i cant figure out how to achieve this in a WPF application.

I'm trying to halt the shutdown until my program is ready to exit


There is a built-in event Application.SessionEnding - this event fires when the user logs off or shuts down the computer... you just need to subscribe to that and put your code to save date etc. in there...

0

精彩评论

暂无评论...
验证码 换一张
取 消