Ejemplo n.º 1
0
 public MouseNotification(MouseNotificationKind kind, Point position, Size clientArea, object sender)
     : base(sender)
 {
     Kind       = kind;
     Position   = position;
     ClientArea = clientArea;
 }
Ejemplo n.º 2
0
 public MouseButtonNotification(MouseNotificationKind kind, Point position, Size clientArea, MouseButtons buttons)
     : base(kind, position, clientArea)
 {
     Buttons = buttons;
 }
Ejemplo n.º 3
0
 public MouseNotification(MouseNotificationKind kind, Point position, Size clientArea)
 {
     Kind       = kind;
     Position   = position;
     ClientArea = clientArea;
 }
Ejemplo n.º 4
0
 public MouseButtonNotification(MouseNotificationKind kind, Vector2 position, Vector2 clientArea, MouseButtons buttons)
     : base(kind, position, clientArea)
 {
     Buttons = buttons;
 }
Ejemplo n.º 5
0
 public MouseNotification(MouseNotificationKind kind, Vector2 position, Vector2 clientArea)
 {
     Kind       = kind;
     Position   = position;
     ClientArea = clientArea;
 }