public void AddChild(TreeItem child)
 {
     child._parent = this;
     Children.Add(child);
 }