I am trying to develop an interface using DockPanelSuite with only a left and right window (I want them to look the same). When using DockPanelSuite you cannot set the width of the document area and there is a gap between the panels (see the green area in image below). Does anyone know how to hide or remove the document are for DockPanel Suite? Below is the code I use to show the panels.
dockPanel.DockRightPortion = .75;
dockPanel.DockLeftPortion = .25;
_libraryBrowser.Show(dockPanel, DockState.DockLeft);
_pageDisplay.Show(dockPanel, DockState.DockRight);