KeyboardHookManager.Core 1.1.2

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

// Install KeyboardHookManager.Core as a Cake Tool
#tool nuget:?package=KeyboardHookManager.Core&version=1.1.2

KeyboardHookManager

Packages

Source Link
NuGet https://www.nuget.org/packages/KeyboardHookManager

KeyboardHookManager - dll for global keyboard and mouse event listen.

  • All button press, down and up listen
  • All mouse events
  • Clipboard commands

Development

Run at once in your desktop app. Also needs select app module for bind event: in SetWindowsHookEx: set on Init(Module module) or no set and use default: Assembly.GetEntryAssembly().ManifestModule.Assembly.GetModules().FirstOrDefault()

Keyboard Events

    HookManager.KeyDown += (s,e) => {};
    HookManager.KeyPress += (s,e) => {};
    HookManager.KeyUp += (s,e) => {};

Mouse Events

    HookManager.MouseClick  += (s, e) => { };
    HookManager.MouseClickExt += (s, e) => { };
    HookManager.MouseDoubleClick += (s, e) => { };
    HookManager.MouseDown += (s, e) => { };
    HookManager.MouseMove += (s, e) => { };
    HookManager.MouseMoveExt += (s, e) => { };
    HookManager.MouseUp += (s, e) => { };
    HookManager.MouseWheel  += (s, e) => { };

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.  net8.0-windows7.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.2 115 3/20/2024
1.1.0 89 3/20/2024
1.0.0 95 3/20/2024