Hi,
In the attached document you can see the text for only one pane/tab is shown for the group pane that is docked at the bottom. Is there a setting so that the text for all panes/tabs is showing?
Cheers
Peter
The code is
new DockableControlPane("tree", "Tree View", this.deckWorkspace3);
new DockableControlPane("list", "List View", this.deckWorkspace2);
new DockableControlPane("rtb", "Rich Text Box", this.ultraGrid1);
dgpTreeList.Panes.Add(dcpTreeView);
dgpTreeList.Panes.Add(dcpListView);
dapBottom.Panes.Add(dgpTreeList);
dapTop.Panes.Add(dcpRichText);
dcpListView.Unpin();
dcpTreeView.Unpin();
this.ultraDockManager1.DockAreas.Add(dapTop);
If you are referring to the groups of tabs in the unpinned tab area, you can set CompressUnpinnedTabs on the dock manager to False.