Reputation: 31
I am reletevely new to Windows Apps development. Not sure if I am right or wrong, but I believe that there is no tree structure in Windows 8.1 apps. If I am wrong or anyone has a solution how I could include a simple tree structure in my app would be really appreciated.
Note: I'm working with C#, Visual Studio 2015, WinRT (Windows Universal 8.1 / Windows Phone 8.1 [phone is not necessery at this point]).
Thanks for answers in advance!
Upvotes: 0
Views: 49
Reputation: 34306
WinRT doesn't have any built-in XAML control for displaying tree data, if I remember correctly (at least not anything like the DOM explorer tree in F12 tools). But you can always roll your own control, or adapt the TreeView control from the WinRT XAML toolkit.
Upvotes: 1