from my Forms Windows App I'm used to build a TreeView like this
treeView1.Items.Add("Result");
treeView1.Nodes[0].Items.Add("Child 1");
treeView1.Nodes[0].Items.Add("Child 2");
treeView1.Nodes[0].Nodes[1].Items.Add("Grandchild");
treeView1.Nodes[0].Nodes[1].Nodes[0].Items.Add("Great Grandchild");
How am I supposed to do this in WPF? I'm confused with all the samples in the web!
Thanks!