This question is locked. New answers and comments are not allowed.
Hi,
My application needs to set RadGridView's Theme dynamically after the Loaded event, but doing so breaks the GridView when it's in a RadWindow. The column headers become undraggable. This behavior only started happening in the Q3 2010 release; it worked fine in Q2 2010. Is this a known issue?
Here's some sample code that demonstrates the bug:
My application needs to set RadGridView's Theme dynamically after the Loaded event, but doing so breaks the GridView when it's in a RadWindow. The column headers become undraggable. This behavior only started happening in the Q3 2010 release; it worked fine in Q2 2010. Is this a known issue?
Here's some sample code that demonstrates the bug:
public MainPage(){ InitializeComponent(); var window = new RadWindow(); window.Show(); var gridView = new RadGridView(); gridView.Loaded += gridView_Loaded; window.Content = gridView; var dummyData = new List<int>(); for (var i = 0; i < 100; i++) { dummyData.Add(i); } gridView.ItemsSource = dummyData;}private void gridView_Loaded(object sender, RoutedEventArgs e){ StyleManager.SetTheme(sender as RadGridView, new Office_BlueTheme());}