Here’s a quick little class for implementing global hotkeys in C#/.NET 2.0+.
As a bit of a preface, you could easily use RegisterHotKey and UnregisterHotKey respectively to accomplish something like this, but this has a few caveats:
You can’t register a key that has already been previously registered.
Some keys are reserved and cannot be registered, such as F12.
Although hacks exist, it’s not very ideal to easily implement with console applications due to the lack of a proper window handle.
Alternatively, we can use another WinAPI function: GetAsyncKeyState. It requires a bit more manual work, but it’s simple in the end.
Note: Without getting into semantics about what constitutes a proper “hook”, I’m just going to refer to the process of monitoring/polling key events via GetAsyncKeyState() as “hooking”.
To keep things simple, the actually hooking process will use the Keys Enumeration and will marshall their underlying integral type during the P/Invoke. When a key is pressed, we will trigger the KeyPressed event.
Modifier Keys
We don’t want to limit the hooking to just basic keys, instead will allow optional modifier keys using the ModifierKeys enum.
Hooking & Unhooking
To hook a key, call the Hook() method, supplying the Keys value as well as any optional modifier keys. Additionally, you can provide a delegate to use for a callback for when the key is pressed.
To unhook a key, simple call the Unhook() method with the appropriate parameters and it will no longer be polled.
Internally, the hooked keys will be stored as KeyHook objects, which provide Keys and Modifiers properties.
Prioritization
For simple hotkeys, there won’t be any collisions. However, when you start mixing and matching modifier keys, things can get a little messy. To alleviate this issue, the hooked keys are sorted internally using a custom IComparer<T>:
Basically, it just compares hooked keys based on the following:
The default timer resolution on Windows 7 is 15.6 milliseconds (ms). Some applications reduce this to 1 ms, which reduces the battery run time on mobile systems by as much as 25 percent.
I’m not about to perform a case steady on how fast a human can realistically type versus the timer interval, configure the interval as necessary. The polling itself can be enabled/disabled via the Enabled property. Additionally, polling is suppressed when hooking/unhooking keys.
During each tick, the key states are polled via PollKeyStates():
When using GetAsyncKeyState() you need to pay attention to the most and least significant bits:
If the function succeeds, the return value specifies whether the key was pressed since the last call to GetAsyncKeyState, and whether the key is currently up or down. If the most significant bit is set, the key is down, and if the least significant bit is set, the key was pressed after the previous call to GetAsyncKeyState. However, you should not rely on this last behavior.
Normally when polling like these, we would end up triggering multiple KeyPressed events within a few milliseconds apart from each other. We can use the return value to get around this.
A temporary List is created which contains all hooked keys which are currently pressed. This way we don't need to call GetAsyncKeyState() while iterating over the hooked keys and we can prevent hook collisions. This is where the key sorting from earlier comes into play. We don't want to prematurely trigger a KeyPressed event for a different hooked key than expected.
This isn’t necessarily a perfect solution but it works and is simple and flexible.