Below is part of my window's xaml:
<docking:DockSite x:Name="docksite">
<docking:SplitContainer>
<docking:Workspace>
<docking:TabbedMdiHost>
<docking:TabbedMdiContainer x:Name="documentPanel">
</docking:TabbedMdiContainer>
</docking:TabbedMdiHost>
</docking:Workspace>
</docking:SplitContainer>
</docking:DockSite>
I have 8 ToolWindow created after the window's initialization. All 8 ToolWindow are moved to documentPanel. Serialization and deserialization works fine most of the time as long as they are in one tab group.
When I rearrange them by splitting them into new horizontal/vertical tab groups and save the layout, that layout didn’t get restored correctly. The individual ToolWindow turned back into tabs.
Is this a bug?
<docking:DockSite x:Name="docksite">
<docking:SplitContainer>
<docking:Workspace>
<docking:TabbedMdiHost>
<docking:TabbedMdiContainer x:Name="documentPanel">
</docking:TabbedMdiContainer>
</docking:TabbedMdiHost>
</docking:Workspace>
</docking:SplitContainer>
</docking:DockSite>
I have 8 ToolWindow created after the window's initialization. All 8 ToolWindow are moved to documentPanel. Serialization and deserialization works fine most of the time as long as they are in one tab group.
When I rearrange them by splitting them into new horizontal/vertical tab groups and save the layout, that layout didn’t get restored correctly. The individual ToolWindow turned back into tabs.
Is this a bug?