TabControl Constructor
.NET Framework 4
Initializes a new instance of the TabControl class.
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 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.