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.
 
tabControl1.Alignment = System.Windows.Forms.TabAlignment.Bottom;
 
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
 
Sorry but it doesn't work. The width of every tab is still the same (very
big).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top