Exemplo n.º 1
0
 public HotKey(Key key, Action action)
 {
     Combination = new KeyCombination(key);
     Action      = action;
 }
Exemplo n.º 2
0
 public HotKey(KeyCombination keyCombination, Action action)
 {
     Combination = keyCombination;
     Action      = action;
 }