/// <inheritdoc />
 public void UnRegisterAll()
 {
     Actions.ForEach(action => HotKeyManager.UnregisterHotKey(action.Id));
 }
        public void UnRegister(string name)
        {
            HotkeyAction action = Actions.First(o => o.Name == name);

            HotKeyManager.UnregisterHotKey(action.Id);
        }