I have a String List with items like this
"Root"
"Root/Item1"
"Root/Item2"
"Root/Item3/SubItem1"
"Root/Item3/SubItem2"
"Root/Item4/SubItem1"
"AnotherRoot"
How do I transfer this stringlist into a treeview ?
|
|
|
|
|
|
|
Thanks to all your answers were -as usual- very helpful |
||
|
|
|
You can use this code:
Hope this helps. Ricardo Lacerda Castelo Branco |
|||
|
|
|
|
One way is to iterate the items split the item and push them on a list and if the parent doesn't match pop an item from the list until the stack is empty or you have a match. |
||
|
|
|
|
You can split each item into it's substrings. Then via recursion look for each item, if the parent exists add to it, and if the parent doesn't exists create it. If you can't see how to do it, i`ll post you a sample code Sample Code
And the caller example:
|
|||
|