Пример #1
0
 public static void RegisterHotkey(Hotkey hotkey)
 {
     hotkeys.Add(hotkey);
 }
Пример #2
0
 public static void UnregisterHotkey(Hotkey hotkey)
 {
     hotkeys.RemoveAll(key => key.Equals(hotkey));
 }
Пример #3
0
 public static void RegisterHotkey(Action action, Hotkey key)
 {
     key.Action = action;
     RegisterHotkey(key);
 }