
Hello,
I have a docksite but want the documents to be displayed not as they would be in tabcontrol, what is the result in the following code:
<docking:DockSite x:Name="dockSite" CanDocumentWindowsFloat="True" FloatingWindowTitle="Procost" CanDocumentWindowsClose="False"
AreNewTabsInsertedBeforeExistingTabs="False" AreDocumentWindowsDestroyedOnClose="False">
<!-- Workspace -->
<docking:Workspace>
<docking:TabbedMdiHost x:Name="tabbedMdiHost">
<docking:TabbedMdiContainer>
<docking:DocumentWindow Title="first" CanDock="False" CanFloat="False" CanDragTab="False" />
<docking:DocumentWindow Title="second" CanDock="True" />
</docking:TabbedMdiContainer>
</docking:TabbedMdiHost>
</docking:Workspace>
</docking:DockSite>
but side-by-side, it means the document windows 'first' and 'second' to be visible at once, it means document window 'first to be docked in the left and 'second' to be docked on right side', with the splitter between them. What additional I need to set? And how to set the width of 'first' document?