Skip to content

HotKeys v1.0.0.2 Bugfixes and new Constructor Overload

Latest
Compare
Choose a tag to compare
@mrousavy mrousavy released this 24 Feb 16:27
· 8 commits to master since this release
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
};