} public void RegisterHotKey() { if (Key == Keys.None) { return; } if (_isKeyRegistered) { UnregisterHotKey(); } _isKeyRegistered = HotKeyWinApi.RegisterHotKey(_handle, _id, KeyModifier, Key); if (!_isKeyRegistered) { ; } }
public void UnregisterHotKey() { _isKeyRegistered = !HotKeyWinApi.UnregisterHotKey(_handle, _id); }