예제 #1
0
 public virtual void Register(UserEvent userEvent)
 {
     repeatEvent = userEvent.IsRepeatEvent(lastEvent);
     if (repeatEvent)
         allEvents.Remove(lastEvent);
     allEvents.Add(userEvent);
     lastEvent = userEvent;
 }
예제 #2
0
 public override bool IsRepeatEvent(UserEvent otherEvent)
 {
     return otherEvent is TextBoxEvent && otherEvent.IsIdenfiedAs(uiItem.PrimaryIdentification);
 }
예제 #3
0
파일: UserEvent.cs 프로젝트: EDOlsson/White
 public virtual bool IsRepeatEvent(UserEvent otherEvent)
 {
     return false;
 }
예제 #4
0
 public virtual bool IsRepeatEvent(UserEvent otherEvent)
 {
     return(false);
 }
예제 #5
0
 public override bool IsRepeatEvent(UserEvent otherEvent)
 {
     return(otherEvent is TextBoxEvent && otherEvent.IsIdenfiedAs(uiItem.PrimaryIdentification));
 }