This question is locked. New answers and comments are not allowed.
Hi there,
Until Q1 2012 I used the following properties to style the background color of the header of the RadWindow.
Background="Black"
BorderBackground="Black"
BorderBrush="Black"
Starting with Q1 2012 Setting these values no longer sets the background color of the RadWindow.
I digged through the ControlTemplate and found out that appearance of the header of RadWindow is controlled through the Fill of the recangle HeaderBackgroundVisual,
Is it possible to create a style that inherits from RadWindowStyle that changes the Fill of HeaderBackgroundVisual? Something like this?
Thank you for your effort!
Until Q1 2012 I used the following properties to style the background color of the header of the RadWindow.
Background="Black"
BorderBackground="Black"
BorderBrush="Black"
Starting with Q1 2012 Setting these values no longer sets the background color of the RadWindow.
I digged through the ControlTemplate and found out that appearance of the header of RadWindow is controlled through the Fill of the recangle HeaderBackgroundVisual,
Is it possible to create a style that inherits from RadWindowStyle that changes the Fill of HeaderBackgroundVisual? Something like this?
<Style x:Key="RadWindowWithBlackHeader" TargetType="RadWindow" BasedOn="{StaticResource TextBlockStyle}"> <Setter Property="HeaderBackgroundVisual.Fill" Value="Black" /></Style>Thank you for your effort!