public HotKeyNotSupportedException(string message, HotKey hotKey, Exception inner) : base(message, inner) { HotKey = hotKey; }
public HotKeyAlreadyRegisteredException(string message, HotKey hotKey, Exception inner) : base(message, inner) { HotKey = hotKey; }
public HotKeyNotSupportedException(string message, HotKey hotKey) : base(message) { HotKey = hotKey; }
public HotKeyEventArgs(HotKey hotKey) { HotKey = hotKey; }