Users Pricing

articles

home / developersection / articles / how to change background color of tab control in c sharp
How to Change Background Color of Tab Control in C Sharp

How to Change Background Color of Tab Control in C Sharp

Anonymous User 19408 27 Jul 2010 Updated 13 Jul 2020

How to Change Background Color of Tab Control in C Sharp

To change the back color of the Tab Control page, we have to set the back color property of the tab page to the desired color.

 How to Change Background Color of Tab Control in C Sharp

Example : // this will change the back color of tabControlpage.
this.tabControl1.TabPages[0].BackColor = Color.Green;

You can also create your own color brush to change the back color of Tab Control.


I am a content writter !


1 Comments