예제 #1
0
 protected void AddChild(ChildFoo oldChild)
 {
     DoAttachLogic(newChild);
     _Children.Add(newChild);
     NotifyPropertyChange("Children");
 }
예제 #2
0
 protected void RemoveChild(ChildFoo oldChild)
 {
     DoRemoveLogic(oldChild);
     _Children.Remove(oldChild);
     NotifyPropertyChange("Children");
 }