Hello all!
I have an app that contains a TabControl element with views each containing their own dockingmanager instance.
I've tried to do something like...
//dockA's view is currently shown on the TabControl/MainWindow.xaml dockA.SaveLayout(pathA); dockB.SaveLayout(pathB); //Program breaks here with an exception
The exception says...
"Unable to serialize docking layout while DockingManager control is unloaded"
It seems as though I cannot save other dockingmanager layouts that are not currently selected and shown by my TabControl.
Is there a way to save each one? Or what is the procedure/requirements necessary to save dockingmanager's layout from another?
Thank you!