Ejemplo n.º 1
0
 public TouchNotification(TouchNotificationKind kind, Point position, Size clientArea, int id, Size contactArea)
 {
     Kind        = kind;
     Position    = position;
     ClientArea  = clientArea;
     Id          = id;
     ContactArea = contactArea;
 }
Ejemplo n.º 2
0
 public TouchNotification(TouchNotificationKind kind, Point position, Size clientArea, int id, bool primary, Size contactArea, long touchDeviceID)
 {
     Kind          = kind;
     Position      = position;
     ClientArea    = clientArea;
     Id            = id;
     Primary       = primary;
     ContactArea   = contactArea;
     TouchDeviceID = touchDeviceID;
 }