datagridmaui

DataGrid in .NET MAUI


I am working on a .NET MAUI project to create a desktop application and I need to create a DataGrid. I read the documentation but I could not find "DataGrid" there. I only found "Grid" which is used to divide the form in rows and columns.

In Winforms we have a DataGrid class. Is there any "DataGrid" or anything like this "DataGrid" in .NET MAUI?


Solution

  • The DataGrid control hasn't been available or approachable in .NET MAUI. However, you can follow up this feature request: [Enhancement] DataGrid Control on Github.

    As an alternative solution, you can use this package Syncfusion.Maui.DataGrid. For more details, you can refer to Getting Started with .NET MAUI DataGrid on how to use it.