I'm using the Windows API (SetWindowsHookEx) to capture keyboard events. I would like to pass the Ctrl+Shift+Esc combination to my application for processing but suppress Task Manager appearing.
Unfortunately, it looks like the thre开发者_Python百科e key combination never gets as far as my Keyboard Hook routine; I only ever get two keys.
I don't want to suppress Task Manager globally, just for my application.
Is there a way to do this?
Just my 2 cents, but I believe it is not possible. This combo is some kind of last resort, and if apps could catch it, and then hang... I am very sure, this event is not delivered by normal means. And even if an app would be able to catch this... I would deinstall it at once for disturbing my work experience.
Catch Ctrl-Alt-Insert, if you need to provide similar functionality.
精彩评论