Socket
Book a DemoInstallSign in
Socket

GlobalHotkeysRX

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

GlobalHotkeysRX

Simple C# library for creating system-wide hotkeys. It allows you to implement keyboard shortcuts to perform specific actions in your application, regardless of the active window. You can use it in background/windowless applications. It supports combinations of: -Modifier keys: Alt, Control, Shift, Win (up to 3 at a time). -Keys, listed at Virtual-Key Codes: https://learn.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes.

2.0.0
Source
nugetNuGet
Version published
Maintainers
1
Created
Source

GlobalHotKeysRX

Simple C# library for creating system-wide hotkeys. It allows you to implement keyboard shortcuts to perform specific actions in your application, regardless of the active window. You can use it in background/windowless applications.

It supports combinations of:

-Modifier keys: Alt, Control, Shift, Win (up to 3 at a time).

-Keys, listed at Virtual-Key Codes.

Usage

Import library

using GlobalHotKeysRX;

Initialization

// default constructor
GlobalHotkeys appHotkeys = new GlobalHotkeys();

// or you can call it with one or more 'Hotkey' parameters.
GlobalHotkeys appHotkeys = new GlobalHotkeys(
  new Hotkey(Modifier.Shift, VKey.P, myFunction),             
  new Hotkey(Modifier.Alt, VKey.S, () => {/* code */})   // lambda expression
  new Hotkey(Modifier.Control, VKey.Y)
);

*Use the | operator to combine/add modifiers. For example, combine Control + Alt to get AtlGr

new Hotkey(Modifier.Control | Modifier.Alt, VKey.P, myFunction) // AltGr + P

*By using 'Modifiers.NoRepeat' with another modifier, the application will only receive another WM_HOTKEY message when the key is released and then pressed again while a modifier is held down.

new Hotkey(Modifier.Shift | Modifier.NoRepeat, VKey.P, myFunction)

* If you are in a Windows Form proyect

you need to specify the handle, either in constructor...

GlobalHotkeys appHotkeys = new GlobalHotkeys(this.Handle);

...or through the ClientHandle property

appHotkeys.ClientHandle = this.Handle;

Also you must add this to the form

protected override void WndProc(ref Message m)
{
   if(m.Msg == WinApi.WM_HOTKEY)
       appHotkeys.OnWinFormMessage(m);  // Replace by your own instance name

   // (Optional) Stops any default or additional processing of the message.
   m.Result = (IntPtr)1;

   base.WndProc(ref m);
}

Adding a hotkey after initialization

appHotkeys.Add(Modifier.Win, VKey.NUM_0);

// or
var htk = new Hotkey(Modifier.Win, VKey.NUM_0, myFuntion);
appHotkeys.Add(htk);   

void myFunction()
{
    // code when a hotkey occurs...
}

Removing

appHotkeys.Remove(Modifier.Shift, VKey.Z);

// or
appHotkeys.Remove(htk);

Subscribe to hotkeys

appHotkeys.HotkeyPressed += AppHotkeys_HotkeyPressed;
// ...
public void AppHotkeys_HotkeyPressed(object sender, HotkeyEventArgs e)
{
  MessageBox.Show($"Hotkey {e.Modifier} + {e.Key} was pressed!");
}

Cleaning up resources

appHotkeys.Dispose();

Simplest way 🙂 (wpf)

GlobalHotkeys ghk = new GlobalHotkeys(new Hotkey(Modifier.Shift, VKey.V, () => { /*code*/ }));

Known issues

This library uses Win32 API. Typically, RegisterHotKey fails if the keystrokes specified for the hot key have already been registered for another hot key. However, some pre-existing, default hotkeys registered by the OS (such as PrintScreen, which launches the Snipping tool) may be overridden by another hot key registration when one of the app's windows is in the foreground.

Ko-fi Patreon

Keywords

C#

FAQs

Package last updated on 11 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.