$99 VS $1000+. UI Control for ASP.NET AJAX(contains chart and gridview).
Dock Control for C# WinForms
Tabs and Captions of Dock Control in C# Windows Forms C# projects
Home > WinForms UI Controls > User Manual > Tab and Caption in C#

Tabs and Captions of Dock Control for C# WinForms

The Dock Control for Windows Forms offers a few properties for developers to fully control the visibility and the location of tabs and captions.
DocumentTabAlignment, this is a property used to determine the place of the tabs for all DocumentTabStrip instances in Tettic.WinForms Dock Control. Users can specify the location of the Tabs to left by using a simple C# code snippet as below,

this.dock1.DocumentTabsAlignment = TabStripAlignment.Left;
DocumentTabsVisible, this is a property used to hide or display all document tabs. Users can hide or show document tabs by using a simple C# code snippet as below,

this.dock1.DocumentTabsVisible = false;
ToolTabAlignment, this is a property used to determine the place of the tabs for all ToolTabStrip instances in Tettic.WinForms Dock Control. Users can specify the location of the Tabs to right by using a simple C# code snippet as below,

this.dock1.ToolTabsAlignment = TabStripAlignment.Right;
ToolTabsVisible, this is a property used to hide or display all tool tabs. Users can hide or show all tool tabs by using a simple C# code snippet as below,

this.dock1.ToolTabsVisible = false;
CaptionVisible, this is a property used to hide the caption of a single ToolTabStrip. Users can hide the caption of ToolTabStrip by using a simple C# code snippet as below,

this.toolTabStrip1.CaptionVisible = false;
DisplayToolCloseButton, this is a property used to display close buttons in the ToolWindow tabs. Users can display close buttons in the ToolWindow tabs by using a simple C# code snippet as below,

this.dock1.DisplayToolCloseButton = true;
DisplayDocumentCloseButton, this is a property used to display close buttons in DocumentWindow tabs. Users can display close buttons in the DocumentWindow tabs by using a simple C# code snippet as below,

this.dock1.DisplayDocumentCloseButton = true;
UI Controlsfor Windows Forms
.NET WinForms UI Overview.NET WinForms UI Features.NET WinForms UI GuideC# WinForms UI DesignVB.NET WinForms UI Design
WinForms UI Controls