Skip to content

Latest commit

 

History

History

PullToRefresh

DevExpress .NET MAUI Data Grid - Implement Pull-to-Refresh

This example shows how to set up the grid so that it allows users to request a content update with the pull-down gesture. To do this, follow the steps below.

  1. Set the DataGridView.IsPullToRefreshEnabled property to true to enable the grid's pull-to-refresh functionality.
  2. Create a command to be executed when a user pulls the grid down. Set the DataGridView.IsRefreshing property to false after data is refreshed to hide the refresh indicator in the grid.
  3. Bind the DataGridView.PullToRefreshCommand property to the created command.

Files to Review