I set the theme for my windows 8 desktop app like so.
StyleManager.ApplicationTheme= new Windows8TouchTheme();I have changed the default fontsize , background , and foreground for my header cells and row like so:
<Style TargetType="{x:Type telerik:GridViewHeaderCell}"> <Setter Property="FontSize" Value="24"/> <Setter Property="Background" Value="#FF407FCB" /> <Setter Property="Foreground" Value="White" /></Style><Style TargetType="{x:Type telerik:GridViewHeaderRow}"> <Setter Property="FontSize" Value="24"/> <Setter Property="Background" Value="#FF407FCB" /> <Setter Property="Foreground" Value="White" /></Style>But unfortunately the "funnel surrounded by circle" filter button is still the default grey.
Is there a simple way to affect this.
Do I really have to extract the whole template just to set the color of the funnel ?
Any help would be appreciated
thanks
dco