DXCollectionView.LoadMore Event
In This Article
Occurs when a user scrolls to the last item in the CollectionView to load new data items.
Namespace: DevExpress.XamarinForms.CollectionView
Assembly: DevExpress.XamarinForms.CollectionView.dll
NuGet Package: DevExpress.XamarinForms.CollectionView
#Declaration
C#
public event EventHandler LoadMore
#Event Data
The LoadMore event's data class is EventArgs.
#Remarks
When the IsLoadMoreEnabled property is enabled, DXCollectionView loads new data records from the bound data source when a user scrolls to the bottom (or to the right, if the Orientation property is set to Horizontal) of the view. Define a load-more command in a view model and bind it to the LoadMoreCommand property, or handle the LoadMore event.
See Also