KeyBoardShortcut is a library written in C #. NET that allows you to capture keyboard events on windows and handle them in our CLR application.
Example:
-
hook.RegisterHotKey(ModifierKeys.Control, System.Windows.Forms.Keys.I);
-
public void hook_KeyPressed(object sender, KeyPressedEventArgs e)
-
{
-
// handle event
-
}
As you can see is quite simple to use, here’s the sources and the compiled binary:
I hope you like it!
Win KeyBoard Shortcuts .NET ← Back



