Exemple #1
0
 public static IHotkeyCollection Add(this IHotkeyCollection collection, IHotkeyHandler handler)
 {
     return(collection.Add(handler.Hotkey, handler.Handle));
 }
Exemple #2
0
 public static IHotkeyCollection Add(this IHotkeyCollection collection, ModifierKeys modifier, Key key, Action <Hotkey> handler)
 {
     return(collection.Add(new Hotkey(modifier, key), handler));
 }