TabControl.SelectedTab Property
.NET Framework 4.5
Gets or sets the currently selected tab page.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The following code example creates a TabControl with two TabPage objects. The SelectedTab property sets tabPage2 as the currently selected tab page.
Use the System.Drawing and System.Windows.Forms namespaces for this example.
using System.Drawing; using System.Windows.Forms; public class Form1 : Form { private TabControl tabControl1; private TabPage tabPage1; private TabPage tabPage2; private void MyTabs() { this.tabControl1 = new TabControl(); this.tabPage1 = new TabPage(); this.tabPage2 = new TabPage(); this.tabControl1.Controls.AddRange(new Control[] { this.tabPage1, this.tabPage2}); this.tabControl1.Padding = new Point(15, 10); this.tabControl1.Location = new Point(35, 25); this.tabControl1.Size = new Size(220, 220); // Selects tabPage2 using SelectedTab. this.tabControl1.SelectedTab = tabPage2; this.tabPage1.Text = "tabPage1"; this.tabPage2.Text = "tabPage2"; this.Size = new Size(300, 300); this.Controls.AddRange(new Control[] { this.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.