public UIScrollEventArgs(UIScrollEventType eventType, int oldValue, int newValue, UIScrollOrientation orientation)
 {
     this.eventType   = eventType;
     this.oldValue    = oldValue;
     this.newValue    = newValue;
     this.orientation = orientation;
 }
Example #2
0
 public UIScrollEventArgs(UIScrollEventType eventType, int oldValue, int newValue, UIScrollOrientation orientation)
 {
     EventType    = eventType;
     OldValue     = oldValue;
     NewValue     = newValue;
     _orientation = orientation;
 }
 public UIScrollEventArgs(UIScrollEventType eventType, int oldValue, int newValue, UIScrollOrientation orientation)
 {
     this.eventType = eventType;
     this.oldValue = oldValue;
     this.newValue = newValue;
     this.orientation = orientation;
 }
 public UIScrollEventArgs(UIScrollEventType eventType, int oldValue, int newValue)
 {
     this.eventType = eventType;
     this.oldValue  = oldValue;
     this.newValue  = newValue;
 }
Example #5
0
 public UIScrollEventArgs(UIScrollEventType eventType, int oldValue, int newValue)
 {
     EventType = eventType;
     OldValue  = oldValue;
     NewValue  = newValue;
 }
 public UIScrollEventArgs(UIScrollEventType eventType, int oldValue, int newValue)
 {
     this.eventType = eventType;
     this.oldValue = oldValue;
     this.newValue = newValue;
 }