I am creating tabs dynamically based on user input. When the user inputs a tab that is already created I want to navigate(select) to the already created instance of the tab. Any ideas?
Thanks for the help.
Well once you have the ContentPane you can just call its Activate method. If the question is how to find the pane then you could either maintain your own dictionary as you create the panes or you could iterate the ContentPanes (using the GetPanes method) and try to locate the pane. The former would likely be more effecient but then you need to maintain it as panes are closed, etc.