TabControl Constructor
.NET Framework 4.5
Initializes a new instance of the TabControl class.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The following code example creates a TabControl with one TabPage. The TabControl constructor creates an instance of tabControl1.
Use the System.Windows.Forms namespace for this example.
using System.Windows.Forms; public class Form1 : Form { private TabControl tabControl1; private TabPage tabPage1; public void MyTabs() { // Invokes the TabControl() constructor to create the tabControl1 object. this.tabControl1 = new System.Windows.Forms.TabControl(); // Creates a new tab page and adds it to the tab control this.tabPage1 = new TabPage(); this.tabControl1.TabPages.Add(tabPage1); // Adds the tab control to the form this.Controls.Add(tabControl1); } public Form1() { MyTabs(); } static void Main() { Application.Run(new Form1()); } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.