After applying an application-wide theme and then specifying a different RadGridView theme in XAML the text color for the grid's filter combo remains the application theme. In my example, I used Expression Dark for the application theme and Office Black for the grid theme. In this case the filter combo text is light gray against a white background, which is difficult for users to read. Below are code snippets for both the XAML and the main page cs.
<telerikGridView:RadGridView x:Name="grid" AutoExpandGroups="True" AutoGenerateColumns="False" telerik:StyleManager.Theme="Office_Black"></telerikGridView:RadGridView>
public MainPage()
{
InitializeComponent();
StyleManager.ApplicationTheme = new Expression_DarkTheme();
}
I am using RadControls for Silverlight Q1 2011 SP1.
Assuming this is not the expected behavior, is there a suitable workaround available? Thanks.