I have a DockSite with its ToolItemsSource bound to a collection of view models.
When I populate certain properties on my ViewModel the ToolItemsSource changes and is populated with a new collection of VMs.
When I populate those VMs, i need each tab to load its content in the background, even if its not selected.
This is because each tab contains a Web browser control, which doesn't load until it is attached to the view, which doesn't happen until a tab is selected.
I've tried automatically selecting each tab both through the docksite and through the view model, but neither seem to preload the tabs correctly.
Is there any way to do this?
My DockSite is setup with a TabbedMdiHost if that helps.