Hello,
after I load the tree I want to expand all items, then call BringPathIntoView(). This does not work. If I do not call ExpandAll(), BringPathIntoView will select the correct item. My requirement is that I expand the whole tree and select a specific item based on certain rules. Here's my code:
radTreeView.ItemsSource = _radTreeViewItems;
radTreeView.ExpandAll();
radTreeView.BringPathIntoView("something\\somethingChild");
The "something\\somethingChild" path is an item near the bottom of a large tree and it does not scroll down. Is there a way to wait for the ExpandAll() method to finish, then call BringPathIntoView?
Thanks,
Scott