Click here to Skip to main content
15,887,676 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Is it possible to hide a tab page of tab control?
Posted

1 solution

You can remove a tab page from the control;
C#
TabPage removedTab = tabControl1.TabPages[1];

tabControl1.TabPages.Remove(removedTab);

If you then store the removedTab you then add or insert it back into the tab page collection with;
C#
if (removedTab != null)
{
    tabControl1.TabPages.Insert(1, removedTab);
}

or
C#
if (removedTab != null)
{
   tabControl1.TabPages.Add(removedTab);
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900