* Merge winforms framework content to working branch (#14) * Breadcrumb / TOC / Move net5 to net folder (#15) * change path from net5 to net * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Add .net 5 winforms placeholder article (#16) * added some metadata and adjusted net5 placeholder * corrections * corrections * corrections * Test1 * Swapping landing page vs concept * fix links * Fix links * Fix desc
3.3 KiB
title, ms.date, dev_langs, helpviewer_keywords, ms.assetid
| title | ms.date | dev_langs | helpviewer_keywords | ms.assetid | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Change the Appearance of TabControl | 03/30/2017 |
|
|
7c6cc443-ed62-4d26-b94d-b8913b44f773 |
How to: Change the Appearance of the Windows Forms TabControl
You can change the appearance of tabs in Windows Forms by using properties of the xref:System.Windows.Forms.TabControl and the xref:System.Windows.Forms.TabPage objects that make up the individual tabs on the control. By setting these properties, you can display images on tabs, display tabs vertically instead of horizontally, display multiple rows of tabs, and enable or disable tabs programmatically.
To display an icon on the label part of a tab
-
Add an xref:System.Windows.Forms.ImageList control to the form.
-
Add images to the image list.
For more information about image lists, see ImageList Component and How to: Add or Remove Images with the Windows Forms ImageList Component.
-
Set the xref:System.Windows.Forms.TabControl.ImageList%2A property of the xref:System.Windows.Forms.TabControl to the xref:System.Windows.Forms.ImageList control.
-
Set the xref:System.Windows.Forms.TabPage.ImageIndex%2A property of the xref:System.Windows.Forms.TabPage to the index of an appropriate image in the list.
To create multiple rows of tabs
-
Add the number of tab pages you want.
-
Set the xref:System.Windows.Forms.TabControl.Multiline%2A property of the xref:System.Windows.Forms.TabControl to
true. -
If the tabs do not already appear in multiple rows, set the xref:System.Windows.Forms.Control.Width%2A property of the xref:System.Windows.Forms.TabControl to be narrower than all the tabs.
To arrange tabs on the side of the control
- Set the xref:System.Windows.Forms.TabControl.Alignment%2A property of the xref:System.Windows.Forms.TabControl to xref:System.Windows.Forms.TabAlignment.Left or xref:System.Windows.Forms.TabAlignment.Right.
To programmatically enable or disable all controls on a tab
-
Set the xref:System.Windows.Forms.TabPage.Enabled%2A property of the xref:System.Windows.Forms.TabPage to
trueorfalse.TabPage1.Enabled = FalsetabPage1.Enabled = false;tabPage1->Enabled = false;
To display tabs as buttons
- Set the xref:System.Windows.Forms.TabControl.Appearance%2A property of the xref:System.Windows.Forms.TabControl to xref:System.Windows.Forms.TabAppearance.Buttons or xref:System.Windows.Forms.TabAppearance.FlatButtons.