NonInvasiveKeyboardHookLibrary 2.2.0
dotnet add package NonInvasiveKeyboardHookLibrary --version 2.2.0
NuGet\Install-Package NonInvasiveKeyboardHookLibrary -Version 2.2.0
<PackageReference Include="NonInvasiveKeyboardHookLibrary" Version="2.2.0" />
paket add NonInvasiveKeyboardHookLibrary --version 2.2.0
#r "nuget: NonInvasiveKeyboardHookLibrary, 2.2.0"
// Install NonInvasiveKeyboardHookLibrary as a Cake Addin #addin nuget:?package=NonInvasiveKeyboardHookLibrary&version=2.2.0 // Install NonInvasiveKeyboardHookLibrary as a Cake Tool #tool nuget:?package=NonInvasiveKeyboardHookLibrary&version=2.2.0
NonInvasiveKeyboardHook
A C# hotkey manager that uses a low level global hook, but allows registering for specific keys to reduce invasion of user privacy.
Get it on NuGet
Example
var keyboardHookManager = new KeyboardHookManager();
keyboardHookManager.Start();
// Register virtual key code 0x60 = NumPad0
keyboardHookManager.RegisterHotkey(0x60, () =>
{
Debug.WriteLine("NumPad0 detected");
});
// Modifiers are supported too
keyboardHookManager.RegisterHotkey(NonInvasiveKeyboardHookLibrary.ModifierKeys.Control, 0x60, () =>
{
Debug.WriteLine("Ctrl+NumPad0 detected");
});
// Multiple modifiers can be specified using the bitwise OR operation
keyboardHookManager.RegisterHotkey(NonInvasiveKeyboardHookLibrary.ModifierKeys.Control | NonInvasiveKeyboardHookLibrary.ModifierKeys.Alt, 0x60, () =>
{
Debug.WriteLine("Ctrl+Alt+NumPad0 detected");
});
// Or as an array of modifiers
keyboardHookManager.RegisterHotkey(new[]{NonInvasiveKeyboardHookLibrary.ModifierKeys.Control, NonInvasiveKeyboardHookLibrary.ModifierKeys.Alt}, 0x60, () =>
{
Debug.WriteLine("Ctrl+Alt+NumPad0 detected");
});
Sample App
I created a GUI C# app to help test this library: https://github.com/kfirprods/ShortcutHotkeysExample If the examples above did not answer your questions, take a look at the source code of the sample app 😃
Read more about Global Hotkeys within Windows applications
For a thorough explanation, look at the CodeProject article: https://www.codeproject.com/Articles/1273010/Global-Hotkeys-within-Desktop-Applications
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on NonInvasiveKeyboardHookLibrary:
Repository | Stars |
---|---|
Invvard/EZLayoutDisplay
Learn your custom layout quickly and easily by displaying your ErgoDox layout right from your desktop !
|
Added support for blocking hotkeys (i.e. hotkeys that won't pass through to input). Credit goes to github user stnkl for this feature