Files
docs-desktop/dotnet-desktop-guide/framework/winforms/controls/tabcontrol-control-overview-windows-forms.md
T
Andy De George c0ba284473 Initial winforms content migrated (#18)
* 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
2020-09-01 16:26:21 -07:00

1.9 KiB

title, ms.date, f1_keywords, helpviewer_keywords, ms.assetid
title ms.date f1_keywords helpviewer_keywords ms.assetid
TabControl Control Overview 03/30/2017
TabControl
TabControl control [Windows Forms], about TabControl control
tab pages [Windows Forms], about tab pages
property pages [Windows Forms], Windows Forms
Windows Forms dialog boxes [Windows Forms], tabs
2b4ea784-a39d-463c-81d8-af74ce068476

TabControl Control Overview (Windows Forms)

The Windows Forms xref:System.Windows.Forms.TabControl displays multiple tabs, like dividers in a notebook or labels in a set of folders in a filing cabinet. The tabs can contain pictures and other controls. You can use the tab control to produce the kind of multiple-page dialog box that appears many places in the Windows operating system, such as the Control Panel Display Properties. Additionally, the xref:System.Windows.Forms.TabControl can be used to create property pages, which are used to set a group of related properties.

Working with TabControl

The most important property of the xref:System.Windows.Forms.TabControl is xref:System.Windows.Forms.TabControl.TabPages%2A, which contains the individual tabs. Each individual tab is a xref:System.Windows.Forms.TabPage object. When a tab is clicked, it raises the xref:System.Windows.Forms.Control.Click event for that xref:System.Windows.Forms.TabPage object.

See also