Set the TabControl.Alignment property to TabAlignment.Bottom.
tabControl1.Alignment = TabAlignment.Bottom;
You can also change the tabs into buttons using the Appearance property and TabAppearance enums.
Home / FAQ / WinForms / TabControl / For a TabControl, how do I make the tabs on the tab pages appear on the bottom instead of on the right
Set the TabControl.Alignment property to TabAlignment.Bottom.
tabControl1.Alignment = TabAlignment.Bottom;
You can also change the tabs into buttons using the Appearance property and TabAppearance enums.
Share with