Aug 8, 2006 #1 Beres118 Programmer Joined Aug 2, 2006 Messages 1 Location 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 Joined May 8, 2006 Messages 13 Location 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;