KeyboardHookLite 1.1.3

dotnet add package KeyboardHookLite --version 1.1.3
NuGet\Install-Package KeyboardHookLite -Version 1.1.3
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="KeyboardHookLite" Version="1.1.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add KeyboardHookLite --version 1.1.3
#r "nuget: KeyboardHookLite, 1.1.3"
#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 KeyboardHookLite as a Cake Addin
#addin nuget:?package=KeyboardHookLite&version=1.1.3

// Install KeyboardHookLite as a Cake Tool
#tool nuget:?package=KeyboardHookLite&version=1.1.3

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

🎯 Features

  • Lightweight low-level global keyboard hook with minimal dependencies.
  • Designed to work with modern UI frameworks (WPF, MAUI, WinUI 3) out of the box - no fiddling with outdated namespaces and Key types.
  • Uses PInvoke signatures in order to avoid reliance on CsWin32 source generator.
  • Source code is commented and thoroughly explained to allow you to expand functionality.
  • Proper garbage disposal of unmanaged code to prevent memory leaks.
  • Usage guide below allows you to get up and running quickly. alternate text is missing from this package README image

⚡️ Usage Guide

Bring in the namespace

alternate text is missing from this package README image

Console Application

alternate text is missing from this package README image

WPF / WinUI 3 / Other

It is essentially the same as the code for the console application above. You can omit System.Windows.Threading.Dispatcher.Run(); as UI frameworks already have a message queue. You can initialize the keyboard hook wherever you choose, whether it be upon a click or when the screen is initialized. Please remember to dispose (kbh.Dispose();) when you no longer require the hook.

KeyboardHookEventArgs features

KeyboardHookEventArgs contains the property KeyPressType and InputEvent which is of type LowLevelKeyboardInputEvent. See below for what that entails. If you would like to add further functionality, you can do so by adding properties to KeyboardHookEventArgs.

alternate text is missing from this package README image

License

MIT

Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0-windows7.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.3 2,593 8/9/2022
1.1.2 410 8/9/2022
1.1.1 379 8/8/2022
1.1.0 385 8/8/2022
1.0.0 407 8/7/2022