There’s no treeview control in win rt, anyone know how to create a treeview user control? Any control should I inheritant?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Navigation by hierarchical structure is better visualize with ListView in winrt. You need to display a list of nodes, when user touches a node, it should display ListView with sub nodes and button back.
But you can implement own control TreeView (that looks like WPF or Silverlight TreeView). You need to derive from ListBox and ListBoxItem controls, and add indent for subnodes at PrepareContainerForItemOverride() method.