码迷,mamicode.com
首页 > Windows程序 > 详细

WPF监听Windows会话

时间:2014-06-28 19:59:33      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   strong   c   一个   

当一个用户关闭Windows或者机器的时候,WPF可以监听到其事件并可以发出警告。事件名称为Application.SessionEnding,在用户注销和关机时触发。

通过设置SessionEndingCancelEventArgs.Cancel 为true,可以阻止其注销/关机行为:

1 private void Application_SessionEnding(object sender, SessionEndingCancelEventArgs e)
2 {
3 MessageBoxResult res = MessageBox.Show("Exiting Windows will terminate this app. Are you sure?", "End Session", MessageBoxButton.YesNo);
4 if (res == MessageBoxResult.No)
5 {
6 e.Cancel = true;
7 }

 

WPF监听Windows会话,布布扣,bubuko.com

WPF监听Windows会话

标签:style   blog   color   strong   c   一个   

原文地址:http://www.cnblogs.com/Tobias/p/3794725.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!