tags:

views:

804

answers:

2

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

+7  A: 

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

pablito
+1  A: 

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;
ISW