This question is locked. New answers and comments are not allowed.
I am developing an application that uses RadGridViews throughout with telerik:StyleManager.Theme="Windows7" applied to them. I am now developing a grid that uses RowStyleSelections to customize rows font color depending on special conditions
(I used http://www.telerik.com/help/wpf/gridview-rowstyleselector.html to make this change).
Unfortunately, some of the rows styles changed in an undesired way. Now when rows are selected, they have the default style of being light orange instead of the light blue from the Windows7 style.
Is there anyway to combine this custom style with the Windows7 style or mimic it?
(I used http://www.telerik.com/help/wpf/gridview-rowstyleselector.html to make this change).
<Style TargetType="telerik:GridViewRow"> <Setter Property="Foreground" Value="Red"/> <Setter Property="FontWeight" Value="Bold"/> </Style> </special:EventLogStyleSelector.HighPriority> <special:EventLogStyleSelector.NotHighPriority> <Style TargetType="telerik:GridViewRow"> <Setter Property="Foreground" Value="Black"/> </Style>Unfortunately, some of the rows styles changed in an undesired way. Now when rows are selected, they have the default style of being light orange instead of the light blue from the Windows7 style.
Is there anyway to combine this custom style with the Windows7 style or mimic it?