Exemplo n.º 1
0
 public virtual bool Remove(MenuComponent component)
 {
     throw new NotSupportedException();
 }
Exemplo n.º 2
0
 public override bool Remove(MenuComponent component)
 {
     return(_components.Remove(component));
 }
Exemplo n.º 3
0
 public virtual void Add(MenuComponent component)
 {
     throw new NotSupportedException();
 }
Exemplo n.º 4
0
 public override void Add(MenuComponent component)
 {
     _components.Add(component);
 }