Ok here is my question:
f.ex I have data structure something like this:
String name
- List<String> subNames;
- List<String> subSubNames;
I can easily populate tree view with the data. But how I should get vise versa stuff on this.
for example: I select some subSubName in the treeview, what is the easiest way to get Name, but not in the treeview it self but my own object.
I can code it by myself, but maybe there is an easiest way of doing that? Something like bind object to the treeview etc...