I have a TreeView. I would not know how many children the tree would have. I want to traverse the treeview in reverse order. I need to process all the leaves first, and then if my processing does not satisfy, it should process the parents of all the leaves. And then its parents, so on until the root element.
Is there a way to do this? Please help. TIA.