Tabs in a TabControl

  • Thread starter Thread starter Alberto
  • Start date Start date
A

Alberto

How can I do to show the tabs in a TabControl in the botton of the control?

Thank you.
 
You can change the Padding property in tabcontrol

this.tabControl1.Padding = new System.Drawing.Point(8, 3);

If have text in the tab page, padding will adjust according to text
 
Back
Top