Hi,
Im trying to change the default highlight colour of a tab item in a tab control in WPF.
In the image the highlight colour is orange, I just want to know if there is away to change it to another solid colour?
Here is my XAML which declares the TabControl and 2 TabItems
<TabControl>
<TabControl.Background>
<LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
<GradientStop Color="#FFCCCCD0"/>
<GradientStop Color="#FF526593" Offset="1"/>
</LinearGradientBrush>
</TabControl.Background>
<TabItem Header="test1">
<TabItem.Content>
<StackPanel Orientation="Horizontal">
<Button Content="Test" VerticalAlignment="Center" />
<Button Content="Test2" />
</StackPanel>
</TabItem.Content>
</TabItem>
<TabItem Header="Test2">
<TabItem.Content>
<TextBox />
</TabItem.Content>
</TabItem>
</TabControl>
Please note as well I dont have access to expression blend, so any solutions need be possible in Visual Studio 2010.
Thanks.