I have an application that is using the Office2013 Implicit theme.
I need to highlight specific cells in a RadGridView (by changing the background color) and have done so using a custom Style Selector.
The issue is that when the custom GridViewCell style is applied, it does not inherit the Office2013 theme.
// CellStyle
<Style x:Key="WarningCellStyle" TargetType="telerik:GridViewCell" BasedOn="{StaticResource GridViewCellStyle}"> <Style.Setters> <Setter Property="Background" Value="LemonChiffon"/> <Setter Property="Foreground" Value="Black"/> </Style.Setters></Style>
Am I targetting the right resources? (TargetType, BasedOn)
Any ideas/suggestions on how to do this otherwise?
Happy to provide more code or screenshots if needed.
