Esempio n. 1
0
 protected void RemoveChild(Control child)
 {
     GetUnderlyingObject().RemoveChild(child.GetUnderlyingObject());
     _children.Remove(child);
     OnChildRemoved(child);
 }
Esempio n. 2
0
 protected void RemoveChild(Control child)
 {
     GetUnderlyingObject().RemoveChild(child.GetUnderlyingObject());
     _children.Remove(child);
     OnChildRemoved(child);
 }
Esempio n. 3
0
 protected void AddChild(Control child)
 {
     GetUnderlyingObject().AddChild(child.GetUnderlyingObject());
     _children.Add(child);
     OnChildAdded(child);
 }
Esempio n. 4
0
 protected void AddChild(Control child)
 {
     GetUnderlyingObject().AddChild(child.GetUnderlyingObject());
     _children.Add(child);
     OnChildAdded(child);
 }