Search code examples
c#.nettabcontroltabpage

C# TabControl TabPage Change


How do I change the tabpage being displayed in my tabcontrol programmatically?


Solution

  • Either by tabControl1.SelectedIndex which is an integer or if you have a reference to a particular tab, tabControl1.SelectedTab.

    If you wanted the first one selected:

    tabControl1.SelectedIndex = 0;