55555
55555

Reputation: 225

tabs at the bottom of TabControl

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

Upvotes: 18

Views: 17854

Answers (3)

Jesse Roper
Jesse Roper

Reputation: 1309

6 years later, it is now

<TabControl TabStripPlacement="Bottom"/>

Upvotes: 6

ISW
ISW

Reputation: 11350

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;

Upvotes: 4

Pablo Retyk
Pablo Retyk

Reputation: 5758

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

Upvotes: 28

Related Questions