Tree Collection in .NET
.net, c#, collections, treeview, wpf
Solution
What you want to do is bind a collection of hierarchical objects to the tree view using the Hierarchical Data Template.
I have written a blog post on this very subject, check it out,
Displaying Hierarchical Data with the WPF Tree View control
Problem
When I make a list box in WPF I frequently set its ItemsSource to be a List. Is there a Tree for TreeView (or what goes in ItemsSource for TreeView)? Is there a collection or generally accepted method for handling tree data in C#.NET?