I want to implememt a tree view with has the following structure.....
[RootNode] <---- Root of tree
--[ParentNode P1] <---- Object of ModelClass P1<
Is it possible you can post further details of your solution. I'm trying to achieve the same thing, I've added multiple hierarchicaldatatemplates but would be interested in seeing the object model.
In my case I've got a Parent with the following properties
Public string Name { get; set; }
Public ObservableCollection ChildrenA { get; set; }
Public ObservableCollection ChildrenB { get; set; }
I want to show these in my treeview. Would be interested in knowing how I might structure the object model as I need something to display in the tree at the level above the individual ChildA and ChildB collections.