Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
260
tab text not showing in all tabs for TabGroup
posted

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

 

DockableControlPane dcpTreeView =

new DockableControlPane("tree", "Tree View", this.deckWorkspace3);

DockableControlPane dcpListView =

new DockableControlPane("list", "List View", this.deckWorkspace2);

DockableControlPane dcpRichText =

new DockableControlPane("rtb", "Rich Text Box", this.ultraGrid1);

dcpRichText.Settings.ShowCaption = DefaultableBoolean.False;

 

DockableGroupPane dgpTreeList = new DockableGroupPane();dgpTreeList.ChildPaneStyle = ChildPaneStyle.TabGroup;

dgpTreeList.Panes.Add(dcpTreeView);

dgpTreeList.Panes.Add(dcpListView);

DockAreaPane dapBottom = new DockAreaPane(DockedLocation.DockedBottom);

dapBottom.Panes.Add(dgpTreeList);

DockAreaPane dapTop = new DockAreaPane(DockedLocation.DockedTop);

dapTop.Panes.Add(dcpRichText);

dcpListView.Unpin();

dcpTreeView.Unpin();

this.ultraDockManager1.DockAreas.Add(dapBottom);

this.ultraDockManager1.DockAreas.Add(dapTop);

dockmanager.zip
  • 44743
    posted

    If you are referring to the groups of tabs in the unpinned tab area, you can set CompressUnpinnedTabs on the dock manager to False.