Tab Control

runswithsizzors

Well-known member
Joined
May 11, 2005
Messages
70
Location
Northern Michigan
Programming Experience
5-10
Does anyone know of a Tab Control that is better than the one inside of Visual Studio. Like changing the color of the tabs and things like that, the three styles are nice but is there more, and can you rotate the tabs. (Instead of on top of the control have them on the side or bottom). Thanks!
 
Last edited:
When using a class it is a good idea to explore the members of that class before asking questions. The TabControl has an Alignment property that controls where the tabs appear. As for colouring the tabs, each TabPage has a BackColor property but the tabs themselves cannot be coloured out-of-the-box. Go here for many tips on customising a TabControl, including coloured tabs.
 
Back
Top