Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DXTreeView.IsRefreshing Property

Gets or sets whether to hide the refresh or load indicator that the DXTreeView displays when executing the pull-to-refresh or load-more operation. This is a bindable property.

Namespace: DevExpress.Maui.TreeView

Assembly: DevExpress.Maui.TreeView.dll

NuGet Package: DevExpress.Maui.TreeView

#Declaration

C#
public bool IsRefreshing { get; set; }

#Property Value

Type Description
Boolean

true if the DXTreeView displays the refresh or load indicator; otherwise, false.

#Remarks

When a user requests the tree view to refresh data or load more data items, the tree view displays an indicator to show the pull-to-refresh or load-more activity status.

Set the IsRefreshing property to false to notify the tree view that the refresh or load activity is completed and the indicator should be hidden. However, if you set this property to true, it does not force the tree view to show the indicator.

See Also