Hallo,
I have read Easy object binding to Treeview Node,
but still have unanswered question.
if an object is associated with treenode tag property, how to access that object members/properties from that treenode ?
node1 = new TreeNode();
node1.tag = object1;
//ex:if object1 has public property valueA
//How to access valueA from node1 ??
Maybe you can cast it back to the object1 type…