public UISmartObjectButtonCollectionEventArgs(UISmartObjectButton button, UIButtonEventType type, long holdTime)
     : base()
 {
     this.Button    = button;
     this.EventType = type;
     this.HoldTime  = holdTime;
 }
 public UIButtonCollectionEventArgs(UIButton button, UIButtonEventType type, long holdTime, int buttonIndex)
     : base()
 {
     this.Button    = button;
     this.EventType = type;
     this.HoldTime  = holdTime;
     this.ButtonIndexInCollection = buttonIndex;
 }
Example #3
0
 public UIKeypadEventArgs(UIButtonEventType eventType, int index, uint sigNumber, BasicTriList device, UIKeypadButton button)
 {
     EventType = eventType;
     Device    = device;
     SigNumber = sigNumber;
     Index     = index;
     Button    = button;
 }
Example #4
0
 public UIObjectButtonEventArgs(UIButtonEventType eventType, long holdTime)
 {
     this.HoldTime  = holdTime;
     this.EventType = eventType;
 }