/// <summary> /// Removes a hotkey from the hotkeys list. /// </summary> /// <param name="hotkey"></param> public static void RemoveHotkey(GlobalHotkey hotkey) { Hotkeys.Remove(hotkey); }
/// <summary> /// Adds a hotkey to the hotkeys list. /// </summary> public static void AddHotkey(GlobalHotkey hotkey) { Hotkeys.Add(hotkey); }