Skip to main content

DevExpress Data Grid for .NET MAUI

  • 2 minutes to read

The DataGridView is a data-aware control designed to display and manage data in a tabular format.

DevExpress Data Grid for .NET MAUI

Download and install the DevExpress.Maui.DataGrid package from the DevExpress NuGet Gallery to obtain the DataGridView component. See the following topic for more information: Get Started with DevExpress Mobile UI for .NET MAUI.

View Example Read Tutorial Watch Video

This control supports the sort, filter, group, drag & swipe, and infinite scrolling functions, in addition to summaries and aggregates, and much more. For more information, see the corresponding topic in this section of the documentation. This topic covers some of these features.

Sorting

Users can sort data by single or multiple columns. In the image below, data is sorted by the From and Sent columns.

DevExpress Data Grid for .NET MAUI - Sorting

See the following topic for more information: How to Sort Rows in DevExpress Data Grid for .NET MAUI.

Grouping

You can group rows by values in a specific column. A group header can display summaries and aggregates. In the image below, rows are grouped by the order ID.

DevExpress Data Grid for .NET MAUI - Grouping

Note

You can only group rows in code or markup. Users cannot group data.

See the following topic for more information: How to Group Rows in DevExpress Data Grid for .NET MAUI.

Filtering

Users can enter values in a special row at the top of the control to filter data in columns. In the image below, data is filtered by values in the Priority and From columns.

DevExpress Data Grid for .NET MAUI - Filtering

See the following topic for more information: How to Filter Rows in DevExpress Data Grid for .NET MAUI.

Layout

You can specify a custom layout for columns. The image below illustrates an example of an advanced layout.

DevExpress Data Grid for .NET MAUI - Layout

See the following topic for more information: AdvancedColumnLayout.

View Example: Display the Multi-Row Column Layout

Swipe Actions

Users can swipe a row to the right or left to access row-related commands. Swipe actions in the image below allow a user to remove a message or reply to it.

DevExpress Data Grid for .NET MAUI - Swiping

See the following topic for more information: Swipe Actions in .NET MAUI Data Grid.

View Example: Define Swipe Actions for Data Rows

See Also