I want to set the background color of a TabItem Header (TabItem.Background) if certain content is not set in the tab. To accomplish this, I have a Brush property in my ViewModel that is bound to the Background property of the TabItem. However, I'm not sure how to get/create the default TabItem background brush.
public Brush TabItemBrush
{
get
{
return IsContentSet ? DefaultTabItemBrush : Brushes.LightSkyBlue;
}
}
<TabItem Header="Some Header" Background="{Binding TabItemBrush, Mode=OneWay}">
I would like the DefaultTabItemBrush brush to match the other TabItems so if the Theme changes all the TabItems will still look the same.
Is the default brush available in SystemColors?
Using C# / .NET 3.5