Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

tabs at the bottom of TabControl

Tags:

c#

winforms

How can I get the Tab Control to place the tabs at the bottom of the control and not at the top

like image 346
55555 Avatar asked Jan 26 '09 07:01

55555


3 Answers

Open the properties window go to property Alignment and set it to Bottom

like image 182
Pablo Retyk Avatar answered Sep 20 '22 22:09

Pablo Retyk


6 years later, it is now

<TabControl TabStripPlacement="Bottom"/>
like image 32
Jesse Roper Avatar answered Sep 20 '22 22:09

Jesse Roper


If you want to set the tab alignment programatically, take a look at msdn

    // Positions tabs on the bottom of tabControl1
    this.tabControl1.Alignment = System.Windows.Forms.TabAlignment.Bottom;
like image 35
ISW Avatar answered Sep 20 '22 22:09

ISW