Interaction logic for TreeViz.xaml
Inheritance: System.Windows.Window, INotifyPropertyChanged
Esempio n. 1
0
 public static void VizualizeTree(ContourNode tree)
 {
     TreeViz viz = new TreeViz();
     viz.Populate(tree); // viz.FillTree(tree);
     viz.ShowDialog();
 }