Exemplo n.º 1
0
 public void Add(ActActionNew action)
 {
     Actions.Add(action);
     Dirty = true;
 }
Exemplo n.º 2
0
 public void AddDefault(ActActionNew action)
 {
     DefaultSelection = Actions.Count;
     Add(action);
 }
Exemplo n.º 3
0
 private bool IsSelected(ActActionNew action)
 {
     return(Actions[Selection] == action);
 }