Example #1
0
 public void RemoveChild(DisplayObject child)
 {
     children.Remove(child);
     child.Parent = null;
     child.UpdateProperties();
 }
Example #2
0
 public void AddChild(DisplayObject child)
 {
     children.AddLast(child);
     child.Parent = this;
     child.UpdateProperties();
 }