NonInvasiveKeyboardHookLibrary 2.2.0

dotnet add package NonInvasiveKeyboardHookLibrary --version 2.2.0
NuGet\Install-Package NonInvasiveKeyboardHookLibrary -Version 2.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NonInvasiveKeyboardHookLibrary" Version="2.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NonInvasiveKeyboardHookLibrary --version 2.2.0
#r "nuget: NonInvasiveKeyboardHookLibrary, 2.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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

.NET Framework Version

.NET Core Version

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 😃 Keyboard Shortcuts In-App Screenshot

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

There are no supported framework assets in this package.

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 !
Version Downloads Last updated
2.2.0 1,148 10/22/2022
2.1.1 1,099 5/20/2021
2.1.0 1,612 11/8/2020
2.0.0 484 11/7/2020
1.5.0 774 10/26/2019
1.4.0 796 3/12/2019
1.3.0 1,322 12/29/2018
1.2.0 849 12/28/2018
1.1.0 815 12/26/2018
1.0.1 798 12/23/2018
1.0.0 855 12/21/2018

Added support for blocking hotkeys (i.e. hotkeys that won't pass through to input). Credit goes to github user stnkl for this feature