Skip to content

Releases: mrousavy/Hotkeys

HotKeys v1.0.0.2 Bugfixes and new Constructor Overload

24 Feb 16:27
Compare
Choose a tag to compare
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)

24 Jan 21:23
Compare
Choose a tag to compare
HotKey key = new HotKey(ModifierKeys modifierKeys, Key key, Window window, Action<HotKey> OnHotKeyPressed);

Final Version

10 Jan 17:06
Compare
Choose a tag to compare
HotKey key = new HotKey(ModifierKeys modifierKeys, Key key, Window window, Action<HotKey> OnHotKeyPressed);