I’m playing with Linq-SQL and would like to display my data in a TreeView on a form. I’m also using .net 3.5, if that matters.
Now, my question – is there a better way to populate this treeview? The way I’m doing it now is like this (psuedo):
for each order
{
OrderNode = new TreeViewNode
for each product in order
{
ProductNode = new TreeViewNode
OrderNode.Add(ProductNode)
}
OrdersTreeView.Add(OrderNode)
}
Thanks in advance!
Here is a rough way to create the nodes given recursion (in lovely mashed up half-psuedo)
Find your root node and call the method.
If you use the interfaces IHierarchyData and IHierarchicalEnumerable and build the nodes with classes implementing these the treenode will accept this as a direct data source.