首页 > 代码库 > WPF监听Windows会话
WPF监听Windows会话
当一个用户关闭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 }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。