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