DataGridView.LoadMore Event
In This Article
Occurs when a user scrolls to the bottom of the grid to load new data items.
Namespace: DevExpress.XamarinForms.DataGrid
Assembly: DevExpress.XamarinForms.Grid.dll
NuGet Package: DevExpress.XamarinForms.Grid
#Declaration
C#
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.
See Also