Reputation: 225
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
Reputation: 1309
6 years later, it is now
<TabControl TabStripPlacement="Bottom"/>
Upvotes: 6
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
Reputation: 5758
Open the properties window go to property Alignment and set it to Bottom
Upvotes: 28