G Guest Aug 6, 2004 #1 hi there, How can i change the back color of tabs in a tab control. thanks in advance
C ClayB [Syncfusion] Aug 6, 2004 #2 George Shepherd's Windows Forms FAQ contains an entry entitled: How do color the tabs on my TabControl? Check it out at: http://www.syncfusion.com/faq/winforms/search/1094.asp ============================================= Clay Burch, .NET MVP Syncfusion, Inc. visit http://www.syncfusion.com for .NET Essentials
George Shepherd's Windows Forms FAQ contains an entry entitled: How do color the tabs on my TabControl? Check it out at: http://www.syncfusion.com/faq/winforms/search/1094.asp ============================================= Clay Burch, .NET MVP Syncfusion, Inc. visit http://www.syncfusion.com for .NET Essentials
S Shiva Aug 6, 2004 #3 TabControl.TabPages[<tab page index>].BackColor = <color to set>; For example, to change the 2nd tab's bg color to blue, TabControl.TabPages[1].BackColor = Color.Blue; HTH. message hi there, How can i change the back color of tabs in a tab control. thanks in advance
TabControl.TabPages[<tab page index>].BackColor = <color to set>; For example, to change the 2nd tab's bg color to blue, TabControl.TabPages[1].BackColor = Color.Blue; HTH. message hi there, How can i change the back color of tabs in a tab control. thanks in advance
G Guest Aug 6, 2004 #4 hi siva, what i mean is different and what you answered is different. I want to change the back color of tab caption( i mean control heading where you give friendly name to idetify easily ).
hi siva, what i mean is different and what you answered is different. I want to change the back color of tab caption( i mean control heading where you give friendly name to idetify easily ).