Change active tabpage font color in VS8 C#

Hello deepak,

Here is a small code sample :

//Get the selected tab page    
TabPage _SelectedTabPage = tabControl1.TabPages[tabControl1.SelectedIndex];        
//Change the background color (example is black)    
_SelectedTabPage.BackColor = Color.Black;