public UseHotkeyAction(KeyboardHelper helper, ActionSucceedDelegate action, HotkeyDelegate hotkey) : base(action)
 {
     KeyboardHelper = helper;
     Hotkey         = hotkey;
 }
 public UseHotkeyAction(KeyboardHelper helper, HotkeyDelegate hotkey) : base()
 {
     KeyboardHelper = helper;
     Hotkey         = hotkey;
 }