Please show me How to get ParentNode of a XamDataTreeNode?
Thanks
Hi,
thanks that helped me. But why is it hidden from intellisense in VS?
greetz
Tania Vladimirova"] You do not see this property - because it is hidden from intellisense in VS. But you can use it to find a 'ParenNode'.
You do not see this property - because it is hidden from intellisense in VS.
But you can use it to find a 'ParenNode'.
It works. Thank you very much for your quick support !
I use XamDataTree (Version Silverlight 2010.3 )
I do not see XamDataTreeNode has Manager property.
Please help.
Hi Friday1234,
In your case you should do this:
XamDataTreeNode currentNode = e.Node;XamDataTreeNode parentNode = currentNode.Manager.ParentNode;
I hope you will find this helpful