New to Telerik UI for .NET MAUIStart a free 30-day trial

Defines when empty content should be displayed in data controls such as RadCollectionView. This enumeration determines the conditions under which an empty state template or message is shown to users.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public enum EmptyContentDisplayMode

Fields

Shows empty content only when the data source is null. If the data source is an empty collection (but not null), no empty content is displayed.

C#
ItemsSourceNull = 0

Shows empty content when the data source is null or when it contains no items. This provides a more comprehensive empty state experience.

C#
ItemsSourceNullOrEmpty = 1