Serialcoder en Français Serialcoder in English
TEL : +33 (0)9 72 13 15 17

Windows Forms FAQ resources

26. Windows Forms TabControl

26.5 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.