
I like to keep the default root for ShellTreeListBox but have it open to a certain path. Is there a way to specify that?
I like to keep the default root for ShellTreeListBox but have it open to a certain path. Is there a way to specify that?
I believe once the control has loaded (like in a Loaded event handler, the first time), you could do things like:
treeListBox.SelectItemByFullPath(@"C:\Windows");
Loaded won't work, works for ContentRendered.
Please log in to a validated account to post comments.