private void Drop(MeshViewModel child)
 {
     if (child.Parent != null)
     {
         child.SetNewParent(null);
         RootLevel.Add(child);
     }
 }
Exemple #2
0
 private void Drop(MeshViewModel child)
 {
     child.SetNewParent(this);
     OnPropertyChanged("Parent");
 }