本文介绍了C#应用程序的系统事件。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
嗨。
我有一个在后台运行的C#应用程序,当用户锁定系统时,它应该暂停并在解锁时恢复。我搜索了事件系统锁定但我找不到。请任何人都可以帮我一个示例代码。
Hi.
I have a C# application which is running in background, When the user locked the system it should be paused and resume while unlocking. I searched for the event system locked but I couldn't find. Please any one can help me with a sample code.
推荐答案
using System;
using Microsoft.Win32;
namespace ConsoleApplication1
{
class Program
{
private static SessionSwitchEventHandler sseh;
static void Main(string[] args)
{
sseh = new SessionSwitchEventHandler(SystemEvents_SessionSwitch);
SystemEvents.SessionSwitch += sseh;
while(true) {}
}
static void SystemEvents_SessionSwitch(object sender, SessionSwitchEventArgs e)
{
Console.WriteLine(e.Reason.ToString());
}
}
}
(运行程序,锁定和解锁你的系统,检查输出)
或者这个 []
这篇关于C#应用程序的系统事件。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!