---
title: "How to Change Background Color of Tab Control in C Sharp"  
description: "How to Change Background Color of Tab Control in C SharpTo change the back color of the Tab Control page, we have to set the back color property of"  
author: "Anonymous User"  
published: 2010-07-27  
updated: 2020-07-13  
canonical: https://www.mindstick.com/articles/65/how-to-change-background-color-of-tab-control-in-c-sharp  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# How to Change Background Color of Tab Control in C Sharp

##

## How to Change Background Color of Tab Control in C Sharp

To change the back color of the [Tab Control page](https://www.mindstick.com/Articles/1539/calculate-duration-between-two-dates-using-asp-dot-net-c-sharp), 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](https://www.mindstick.com/mindstickarticle/1fe6d46e-90d4-4cd1-aeed-4610af463c7f/images/716eef64-9cd8-45cc-8bcc-3a29c61f16c3.png)

##### 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.

---

Original Source: https://www.mindstick.com/articles/65/how-to-change-background-color-of-tab-control-in-c-sharp

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
