Example #1
0
 public virtual void Register(UserEvent userEvent)
 {
     repeatEvent = userEvent.IsRepeatEvent(lastEvent);
     if (repeatEvent)
         allEvents.Remove(lastEvent);
     allEvents.Add(userEvent);
     lastEvent = userEvent;
 }
Example #2
0
 public override bool IsRepeatEvent(UserEvent otherEvent)
 {
     return otherEvent is TextBoxEvent && otherEvent.IsIdenfiedAs(uiItem.PrimaryIdentification);
 }
Example #3
0
 public virtual bool IsRepeatEvent(UserEvent otherEvent)
 {
     return false;
 }
Example #4
0
 public virtual bool IsRepeatEvent(UserEvent otherEvent)
 {
     return(false);
 }
Example #5
0
 public override bool IsRepeatEvent(UserEvent otherEvent)
 {
     return(otherEvent is TextBoxEvent && otherEvent.IsIdenfiedAs(uiItem.PrimaryIdentification));
 }