I am trying to display a tree view with mixed types using HierarchicalDataTemplate but so far all my attempts failed..
I have a tree-like class that can have two different types of children. (Location and Device). To make things understandable here is the illustration of what I am trying to display:
->Location 1
|
|--->Device 1.1
|--->Device 1.2
|--->Location 1.2
|
|---->Device 1.2.1
|---->Location 1.2.1
.....etc.....
I have tried a lot of solutions I found but none worked. In the most cases I just get the class name in the tree view. Is what I am trying to do even possible using HierarchicalDataTemplate? If it is please let me know how.