New to Telerik UI for WinForms? Download free 30-day trial

Tabs and Captions

RELATED VIDEOS
RadDock Tab Alignment/Visibility and AutomationIn this video, you will learn about some of the new features provided in the R3 2009 release of the RadDock. These features include tab alignment and visibility as well as drag and drop automation. WinForms RadDock Tabs and Captions Tutorial

RadDock exposes several properties which allow you to have full control over the visibility and the position of the tabs/captions:

  • DocumentTabAlignment: defines the position of the tabs for all DocumentTabStrip instances in RadDock.

Setting DocumentTabsAlignment to Left

this.radDock1.DocumentTabsAlignment = TabStripAlignment.Left;

WinForms RadDock Left DocumentTabsAlignment

  • DocumentTabsVisible: allows you to hide/show all document tabs:

Hiding the document tabs

this.radDock1.DocumentTabsVisible = false;

WinForms RadDock Hiding Document Tabs

  • ToolTabAlignment: defines the position of the tabs for all ToolTabStrip instances in RadDock:

Setting the ToolTabsAlignment to Right

this.radDock1.ToolTabsAlignment = TabStripAlignment.Right;

WinForms RadDock ToolTabsAlignment Right

  • ToolTabsVisible: allows you to hide/show all tool tabs.

Hiding the tool tabs

this.radDock1.ToolTabsVisible = false;

WinForms RadDock Hiding Tool Tabs

  • CaptionVisible: allows you to hide the caption of a single ToolTabStrip.

Hiding the caption of ToolTabStrip

this.toolTabStrip1.CaptionVisible = false;

WinForms RadDock Hinding Caption ToolTabStrip

  • ShowToolCloseButton and ShowDocumentCloseButton: displays/hides close buttons in the ToolWindow/DocumentWindow tabs.

Showing close buttons

this.radDock1.ShowToolCloseButton = true;
this.radDock1.ShowDocumentCloseButton = true;

WinForms RadDock Showing Close Buttons