Articles in this section
Category / Section

How to change header background dynamically in the .NET MAUI DataGrid control?

2 mins read

The .NET MAUI DataGrid allows you to dynamically change the header row background color using the HeaderRowBackground property in SfDataGrid.DefaultStyle.

The code example below illustrates how to change the header background dynamically.

 public class DataGridBehavior : Behavior<ContentPage>
 {
     private SfDataGrid? dataGrid;
     private EmployeeViewModel? employeeViewModel;

     protected override void OnAttachedTo(ContentPage page)
     {
         base.OnAttachedTo(page);
         employeeViewModel = new EmployeeViewModel();
         dataGrid = page.FindByName<SfDataGrid>("dataGrid");
         dataGrid.ItemsSource = employeeViewModel.Employees;
         dataGrid.DefaultStyle.HeaderRowBackground = Colors.Red;
     }

     protected override void OnDetachingFrom(ContentPage page)
     {
         base.OnDetachingFrom(page);
     }
 }

Download the complete sample from GitHub

Conclusion

I hope you enjoyed learning how to change the header background dynamically in the .NET MAUI DataGrid control.

You can refer to our .NET MAUI DataGrid feature tour page to learn about its other groundbreaking feature representations. Explore our .NET MAUI DataGrid Documentation to understand how to present and manipulate data.
For current customers, check out our .NET MAUI components on the License and Downloads page. If you are new to Syncfusion®, try our 30-day free trial to explore our .NET MAUI DataGrid and other .NET MAUI components.

Please let us know in the comments section if you have any queries or require clarification. You can also contact us through our support forums, Direct-Trac or feedback portal, or the feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied