Exemplo n.º 1
0
 protected void RemoveChild(Control child)
 {
     GetUnderlyingObject().RemoveChild(child.GetUnderlyingObject());
     _children.Remove(child);
     OnChildRemoved(child);
 }
Exemplo n.º 2
0
 protected void AddChild(Control child)
 {
     GetUnderlyingObject().AddChild(child.GetUnderlyingObject());
     _children.Add(child);
     OnChildAdded(child);
 }
Exemplo n.º 3
0
 protected virtual void OnChildRemoved(Control child)
 {
     DoLayout();
 }
Exemplo n.º 4
0
 protected override void OnChildRemoved(Control child)
 {
     base.OnChildRemoved(child);
 }