SharpHotHook 0.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package SharpHotHook --version 0.1.0                
NuGet\Install-Package SharpHotHook -Version 0.1.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="SharpHotHook" Version="0.1.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SharpHotHook --version 0.1.0                
#r "nuget: SharpHotHook, 0.1.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 SharpHotHook as a Cake Addin
#addin nuget:?package=SharpHotHook&version=0.1.0

// Install SharpHotHook as a Cake Tool
#tool nuget:?package=SharpHotHook&version=0.1.0                

SharpHotHook

Проста бібліотека для зчитування комбінацій глобальних клавіш, що використовує бібліотеку
SharpHook

Використання

Зчитує клавіші HotkeyManager.
Перед цим додайте по черзі гарячі клавіші і метод Action, що буде виконуватися після натискання комбінацій. \

var hook = new HotkeyManager(); // create hotkey reader
hook.AddHotkey([KeyCode.VcLeftControl, KeyCode.Vc1], () =>
{
Console.WriteLine("Pressed v1");
}); // add first hotkey
hook.AddHotkey([KeyCode.VcLeftAlt, KeyCode.Vc5], () =>
{
Console.WriteLine("Pressed alt 5");
}); // add second one
hook.AddHotkey([KeyCode.VcLeftControl, KeyCode.Vc2], () =>
{
Console.WriteLine("Pressed v2");
}); // another one
hook.AddPauseHotkey([KeyCode.VcLeftControl, KeyCode.Vc0]); // add pause 
hook.Run(); // launch

Трохи ще

  • KeyCode береться з бібліотеки SharpHook. Детальніше там же.
  • Комбінація зчитується в будь-якому порядку. Наприклад, ctrl+c = c+ctrl
  • При паузі клавіші все ще зчитуються (щоб можна було зняти паузу), але гарячі клавіші не працюють
  • При запуску внутрішній зчитувач клавіш TaskPoolGlobalHook перестворюється.
  • Код не виконується далі hook.Run(). Щоб зупинити, викоритовуйте метод Stop з іншого потоку або додайте через метод AddStopHotkey комбінацію клавіш для завершення
  • Можливо, потім додам парсер для перекладу з string в KeyCode
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos 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.

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
0.3.2 103 9/25/2024
0.3.1 91 9/24/2024
0.3.0 92 9/24/2024
0.2.0 105 9/9/2024
0.1.0 114 9/9/2024