mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-07 07:56:07 +02:00
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
This commit is contained in:
+27
@@ -0,0 +1,27 @@
|
||||
---
|
||||
title: "TabControl Control Overview"
|
||||
ms.date: "03/30/2017"
|
||||
f1_keywords:
|
||||
- "TabControl"
|
||||
helpviewer_keywords:
|
||||
- "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"
|
||||
ms.assetid: 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
|
||||
|
||||
- <xref:System.Windows.Forms.TabControl>
|
||||
- [TabControl Control](tabcontrol-control-windows-forms.md)
|
||||
- [How to: Change the Appearance of the Windows Forms TabControl](how-to-change-the-appearance-of-the-windows-forms-tabcontrol.md)
|
||||
- [How to: Add a Control to a Tab Page](how-to-add-a-control-to-a-tab-page.md)
|
||||
- [How to: Add and Remove Tabs with the Windows Forms TabControl](how-to-add-and-remove-tabs-with-the-windows-forms-tabcontrol.md)
|
||||
- [How to: Disable Tab Pages](how-to-disable-tab-pages.md)
|
||||
- [Dialog Boxes in Windows Forms](../dialog-boxes-in-windows-forms.md)
|
||||
Reference in New Issue
Block a user