本文介绍了Exe运行时无法关闭计算机的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好
我的问题是有人尝试
在我的exe运行时关闭计算机
Hello
My problem is when someone try to
to shutdown my computer when my exe is Running
Message.Show("unable to shutdown computer myApplicetion is running")
推荐答案
// SystemEvents class is present in Microsoft.Win32
//e.Cancel=true will terminate the log off or shutdown procedure
SystemEvents.SessionEnding += new SessionEndingEventHandler((o, e) => { e.Cancel = true; MessageBox.Show("unable to shutdown computer myApplicetion is running"); });
这篇关于Exe运行时无法关闭计算机的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!