Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

TabControl Question

Status
Not open for further replies.

Beres118

Programmer
Aug 2, 2006
1
US
Is it possible to change the backcolor of the tabs on the TabControl in my C# application? The default backcolor is gray.

Thanks for the help.

-Chris
 
The TabControl itself doesn't have a BackColor property. However, individual tabs do, so you can change it like so:

Code:
tabPage1.BackColor = System.Drawing.[teal]Color[/teal].Red;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top