示例#1
0
 public override void ActionPerformed(Action action)
 {
     action.Handle(this);
     ActionPerformed();
 }
示例#2
0
 public override void ActionPerformed(Action action)
 {
     if (action == Action.Scroll) Thread.Sleep(500);
     CustomWait();
     base.ActionPerformed();
 }
示例#3
0
文件: UIItem.cs 项目: timotei/White
 /// <summary>
 /// Implements <see cref="IActionListener.ActionPerformed"/>
 /// </summary>
 public virtual void ActionPerformed(Action action)
 {
     actionListener.ActionPerformed(action);
 }
示例#4
0
文件: Window.cs 项目: spider09/White
 public override void ActionPerformed(Action action)
 {
     action.Handle(this);
     ActionPerformed();
 }
示例#5
0
 public virtual void ActionPerformed(Action action)
 {
     process.WaitForInputIdle(CoreAppXmlConfiguration.Instance.BusyTimeout);
 }
示例#6
0
文件: Tree.cs 项目: EDOlsson/White
 public override void ActionPerformed(Action action)
 {
     actionListener.ActionPerformed(action);
 }