Exemplo n.º 1
0
 public HotKeyNotSupportedException(string message, HotKey hotKey, Exception inner)
     : base(message, inner)
 {
     HotKey = hotKey;
 }
Exemplo n.º 2
0
 public HotKeyAlreadyRegisteredException(string message, HotKey hotKey, Exception inner) : base(message, inner)
 {
     HotKey = hotKey;
 }
Exemplo n.º 3
0
 public HotKeyNotSupportedException(string message, HotKey hotKey)
     : base(message)
 {
     HotKey = hotKey;
 }
Exemplo n.º 4
0
 public HotKeyEventArgs(HotKey hotKey)
 {
     HotKey = hotKey;
 }