This question is locked. New answers and comments are not allowed.
In my code behind I have set to use an application wide theme e.g.
StyleManager.ApplicationTheme = new SummerTheme();
In my xaml I would like to style the gridviewgrouppanelcell e.g.
However, the background stays as the summer theme. How can I override it but keep the theme for other controls?
StyleManager.ApplicationTheme = new SummerTheme();
In my xaml I would like to style the gridviewgrouppanelcell e.g.
<Grid.Resources> <Style TargetType="telerik:GridViewGroupPanelCell"> <Setter Property="Background" Value="Red"/> </Style> </Grid.Resources>However, the background stays as the summer theme. How can I override it but keep the theme for other controls?