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