How to change tab control background of header in silverlight 3?
I'm trying to figure out how to change the color of tab headers in TabControl. The whole tab control has another color than white and开发者_如何学Go it's why it looks so ugly.
Thank you
You can set the tab header color right into the TabItem tag:
<basics:TabItem BorderBrush="#00426b" FontSize="12" Background="#00426b">
精彩评论