Skip to main content
A newer version of this page is available. .

DataGridView.LoadMore Event

Occurs when a user scrolls to the bottom of the grid to load new data items.

Namespace: DevExpress.Maui.DataGrid

Assembly: DevExpress.Maui.DataGrid.dll

NuGet Package: DevExpress.Maui.DataGrid

Declaration

public event EventHandler LoadMore

Event Data

The LoadMore event's data class is EventArgs.

Remarks

DataGridView supports dynamic loading of new data records from the bound data source when a user scrolls to the bottom of the grid. To enable this functionality, set the DataGridView.IsLoadMoreEnabled property to true. Then, either handle the LoadMore event, or define a command in a view model and bind it to the DataGridView.LoadMoreCommand property.

Set the DataGridView.IsRefreshing property to false after data is loaded to hide the loading indicator in the grid.

See Also