Hi!
I have a problem with dock layout serialization. Everything works as expected if XAML looks like this (attributes omitted)But if structure my dock site like this:
...then I get an InvalidOperationException "Attempt to remove from unknown parent class 'ActiproSoftware.Windows.Controls.Docking.Workspace'." when doing deserialization like this:
I have a sample ready that reproduce the issue. I can send it to your support mail if needed.
Any ideas? Is layout serialization unsupported for this dock site structure or am I plain doing things wrong? Thanks!
I have a problem with dock layout serialization. Everything works as expected if XAML looks like this (attributes omitted)
<docking:DockSite>
<docking:Workspace>
<docking:TabbedMdiHost>
<docking:TabbedMdiContainer>
<docking:ToolWindow>
<docking:DockSite>
<docking:Workspace>
<docking:ToolWindowContainer>
<docking:ToolWindow>
new DockSiteLayoutSerializer().LoadFromString(layout, _dockSite);
Any ideas? Is layout serialization unsupported for this dock site structure or am I plain doing things wrong? Thanks!