예제 #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);
 }