4 Answers, 1 is accepted
0
Accepted
Hello Barry,
To achieve this you can subscribe to the Loaded event of RadGridView and get the ItemsControl representing the control panel. Then you can set its Background property. Here is an example in code:
private void GridView_Loaded(object sender, RoutedEventArgs e)
{
var controlPanel = this.gridView.ChildrenOfType<ItemsControl>().FirstOrDefault(x => x.Name == "PART_ControlPanelItemsControl");
controlPanel.Background = Brushes.OrangeRed;
}
Read about the ChildrenOfType<T>() method in the Visual Tree Helpers article.
Regards,
Martin Ivanov
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0

Barry
Top achievements
Rank 1
answered on 16 Aug 2019, 06:39 PM
Thanks...it worked !
How about the part (row) that says "Drag a column header and drop it here to group by that column" ?
0

Barry
Top achievements
Rank 1
answered on 16 Aug 2019, 06:55 PM
ourGrid.GroupPanelBackground
0
Hello Barry,
That's right, you can set the background of the group panel via the GroupPanelBackground property of RadGridView.
Regards,
Martin Ivanov
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.