示例#1
0
 public GuiAction Add(GuiAction action)
 {
     action.List     = this;
     action._control = _owner;
     _actions.Add(action);
     return(action);
 }
示例#2
0
 public void Remove(GuiAction action)
 {
     _actions.Remove(action);
 }
示例#3
0
 public void InsertAfter(GuiAction action)
 {
     action.List     = this;
     action._control = _owner;
     _actions.Insert(_index + 1, action);
 }
示例#4
0
 public void InsertBefore(GuiAction action)
 {
     action.List     = this;
     action._control = _owner;
     _actions.Insert(_index - 1, action);
 }