Files
docs-desktop/dotnet-desktop-guide/framework/winforms/controls/add-and-remove-tabs-with-wf-tabcontrol-using-the-designer.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, description, ms.date, helpviewer_keywords, ms.assetid
title description ms.date helpviewer_keywords ms.assetid
Add and Remove Tabs with TabControl Using the Designer Learn how to add and remove tabs with the Windows Forms TabControl control by using the designer. 03/30/2017
tabs [Windows Forms], removing from pages
TabPage control
TabPage control [Windows Forms], adding and removing tabs
tabs [Windows Forms], adding to pages
tab pages
480633db-413a-45d2-9c8f-0427cc13adbe

How to: Add and Remove Tabs with the Windows Forms TabControl Using the Designer

When you place a xref:System.Windows.Forms.TabControl control on your form, it contains two tabs by default. You can add or remove tabs using the designer.

The following procedure requires a Windows Application project with a form containing a xref:System.Windows.Forms.TabControl control. For information about setting up such a project, see How to: Create a Windows Forms application project and How to: Add Controls to Windows Forms.

To add or remove a tab using the designer

  • On the control's smart tag, click Add Tab or Remove Tab

    -or-

    In the Properties window, click the Ellipsis button (The Ellipsis button (...) in the Properties window of Visual Studio.) next to the xref:System.Windows.Forms.TabControl.TabPages%2A property to open the TabPage Collection Editor. Click the Add or Remove button.

See also