How to hide the Tabcontrol element from the Windows form
1 answer
All controls have a Visible property inherited from their common ancestor: System.Windows.Froms.Control .
To hide a control, set this property to false . For example:
tabControl1.Visible = false; |
Visible = false. Not? - Dmitry D.