Releases: mrousavy/Hotkeys
Releases · mrousavy/Hotkeys
HotKeys v1.0.0.2 Bugfixes and new Constructor Overload
HotKey key = new HotKey(ModifierKeys modifierKeys, Key key, Window window, Action<HotKey> OnHotKeyPressed);
or
HotKey key = new HotKey(ModifierKeys modifierKeys, Key key, Window window);
key.HotkeyPressed += delegate {
//Stuff happens here
};
Final Version (Bugfixes)
HotKey key = new HotKey(ModifierKeys modifierKeys, Key key, Window window, Action<HotKey> OnHotKeyPressed);
Final Version
HotKey key = new HotKey(ModifierKeys modifierKeys, Key key, Window window, Action<HotKey> OnHotKeyPressed);