I am trying to show multiple types in the tree view
I have Projects, which contain workspaces
When Projects are expanded can see list of workspaces.
I have tried using <TreeViewItem Header="My Projects" ItemSource="{Binding Projects}">
but "My Projects" is becoming a root node and Project1, Project2... becomes its child nodes.
Also I have tried a Label with "My Projects" inside the treeview but could get to show as needed.
So Finally I ended up with a tree view for Projects and Followed by another tree view for Workspaces.
Is it possible to implement this in a single tree view?