vote up 1 vote down star

Hi,

I have an C# application runing at the back ground. Now i want to stop this application when the system is locked. how can i do that. Any help regarding this is really appreciated.

Thanks Hougen for the solution. could you please suggest me should we include any Dlls to handle "Microsoft.Win32.SystemEvents.SessionSwitch" this event? And in which layer this code should reside. I guess it is in Business layer. Any sugeestion regading this?

flag
3  
What does your question have to do with the keyboard? – Johannes Rössel Sep 21 at 10:42
Are you thinking about catching Win+L keyboard combination? I don't think that would solve your problem since the computer can still get locked using other methods... – Rekreativc Sep 21 at 10:46
Do you mean locked, as in Win+L, or locked as in frozen, crashed? – Dale Halliwell Sep 21 at 10:51
Well, if the system is crashed I think you don't need to worry about running applications anymore :-) – Johannes Rössel Sep 21 at 10:52
2  
duplicate? stackoverflow.com/questions/44980/… – MAD9 Sep 21 at 10:55
show 2 more comments

1 Answer

vote up 8 vote down

Easy. Make an event handler for the

Microsoft.Win32.SystemEvents.SessionSwitch

event. In it, check the SessionSwitchEventArgs.Reason property for the value SessionSwitchReason.SessionLock.

Shyam: sorry for not coming back to you right away. You shouldn't have to include any special DLLs. The SystemEvents class is in the System assembly. Whether this handler belongs in the business layer - I guess it belongs in whatever project contains your service class - the one that inherits from WindowsService.

public MyService()
{
    InitializeComponent();
    SystemEvents.SessionSwitch += SystemEvents_SessionSwitch;
}

void SystemEvents_SessionSwitch(object sender, SessionSwitchEventArgs e)
{
    if (_isRunning)
    {
        // Pause
    }
}
link|flag
Thanks alot. I will try with this approach and let you know. – shyam Sep 21 at 13:13
should we include any Dll's to handle this event? – shyam Sep 21 at 14:19
Can you suggest me in which layer this event should be raised? – shyam Sep 21 at 14:25
i guess it is Business layer please confirm me!!! – shyam Sep 21 at 14:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.