Reputation: 106
I know the TreeView control of UWP. What I'm looking for is a tree navigator control like the Syncfusion Tree Navigator control. It gives a unique layout to arrange items in hierarchical tree structure without occupying much space. It displays the expanded item in a navigator.
Maybe, you will ask me why not use Syncfusion Tree Navigator
control directly. It's because it's not open source. I'm more interested in how to make such a control. I do not know where to start. Maybe, I need to do a lot of customizations. UWP experts, if you know how to make such a control. Please give me some suggestions.
Upvotes: 2
Views: 330
Reputation: 703
You can implement the NavigationView
class and have each navigation element expend to reveal nested elements when possible.
Edit : There's this guide to implement everything in the navigation pane by yourself. Else, you could wait for the NavigationView
class to support this feature.
Upvotes: 2