Google Desktop Search has this nice feature of catching monitor shortcuts (such as CTRL + CTRL) while running in the background. Once the event is caught, the desktop search bar is being shown. Is there a way to simply implement this in C#?
views:
42answers:
1
+1
Q:
Monitoring general keyboard shortcuts in Windows (Ex. Ctrl twice to bring up Google Desktop Search)?
+2
A:
You can do this with a Global Keyboard Hook.
This lets you preview keyboard events (and mouse events) before they are dispatched to the active application.
Eric J.
2009-09-23 23:50:43