Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
110
How to Determine Node that was Select
posted

When someone click on xamwebtree node,  how do I determine what node was selected. I assume I use the Mousedown or MouseUp event but what properties will tell me the item selected.

Parents
No Data
Reply
  • 9836
    posted

    The XamWebTree exposes a SelectedItems collection that holds all of the selected three nodes. Instead of MouseDown/MouseUp events, you can use the SelectionChanged event to check for a newly added or removed items using e.AddedItems and e.RemovedItems. You can find more information in our online documentation here.

Children
No Data