Aug 8, 2006 #1 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
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
Aug 8, 2006 #2 pianoben Programmer May 8, 2006 13 US 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; Upvote 0 Downvote
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;