This question is locked. New answers and comments are not allowed.
Hello,
Since I updated my application from Q2-SP1 to Q3-BETA, the default style of GridViewHeaderCell in the RadGridView is no longer applies.
I write a small code for you :
So on Q2 header "test" is Red an not in Q3 !
Probably a bug ?
A+
JC
Since I updated my application from Q2-SP1 to Q3-BETA, the default style of GridViewHeaderCell in the RadGridView is no longer applies.
I write a small code for you :
<UserControl.Resources> <ResourceDictionary> <Style TargetType="telerik:GridViewHeaderCell"> <Setter Property="Background" Value="Red"/> <Setter Property="BorderBrush" Value="Yellow"/> </Style> </ResourceDictionary></UserControl.Resources> <Grid x:Name="LayoutRoot" Background="White"> <telerik:GridViewHeaderCell Content="GridViewHeaderCell" Margin="105,39,155,0" VerticalAlignment="Top" d:LayoutOverrides="Width"/> <telerik:RadGridView Margin="27,111,45,128" d:LayoutOverrides="Width, Height"> <telerik:RadGridView.Columns> <telerik:GridViewColumn Header="Test"/> </telerik:RadGridView.Columns> </telerik:RadGridView></Grid>So on Q2 header "test" is Red an not in Q3 !
Probably a bug ?
A+
JC