Пример #1
0
 public OnWheelEvent(ModifierKeys modifierKeys, MouseButton mouseButton, MouseWheelDirection direcction, int wheel, DefinedActions definedActions, string command)
 {
     this.ModifierKeys        = modifierKeys;
     this.MouseButton         = mouseButton;
     this.MouseWheelDirection = direcction;
     this.WheelCount          = wheel;
     this.DefinedActions      = definedActions;
     this.Command             = command;
 }
Пример #2
0
 public OnClickEvent(ModifierKeys modifierKeys, MouseButton mouseButton, int clicks, DefinedActions definedActions, string command)
 {
     this.ModifierKeys   = modifierKeys;
     this.MouseButton    = mouseButton;
     this.ClickCount     = clicks;
     this.DefinedActions = definedActions;
     this.Command        = command;
 }