How can I bind the XamDataTree selectedItems? I am using the tree as a selection control in an edit screen.
I can set the itemsSource which gives me the items to choose from, but cannot find a method of binding it's value. In my case I am only allowing the user to select one item from the xam data tree so this may simplify the answer. Thanks.
The XamDataTree does not allow you to bind the Selected items collection.
What about the xamtree?
No the XamWebTree does not allow for binding of the selected items collection.
You could use a Behavior to sync the XamDataTrees selected tree nodes to your ViewModel.
I'm working on a blog post that will be published shortly that shows how to create Behaviors for several of our controls to sync their selected items behavior to a collection exposed by you VM.
Devin
OK, thanks for the info guys.