3rd Party TreeView that Bind to Object
-
Anybody knows a 3rd party TreeView that can be bound to Object I would like to write something like this:
MyOwnCollection x = new MyOwnCollection();
treeViewControl.DataSource = x;I tried RadTreeView from Telerik. But it failed to read the Parent-Child relationship anybody has any suggestion ?
foreach(Minute m in MyLife) myExperience++;
-
Anybody knows a 3rd party TreeView that can be bound to Object I would like to write something like this:
MyOwnCollection x = new MyOwnCollection();
treeViewControl.DataSource = x;I tried RadTreeView from Telerik. But it failed to read the Parent-Child relationship anybody has any suggestion ?
foreach(Minute m in MyLife) myExperience++;
treeviews need to populated with a recursive function normally, as far as my knowledge goes, I think you'd better try using that technique instead of wasting ur time getting a third party control for this. The normal tree view should suffice I think. Populate TreeView from Database [^] you might like this one too[^] Hope that helps
Rocky My Blog