ItemsRepeater.ItemsSourceView Property

Definition

Gets a standardized view of the supported interactions between a given ItemsSource object and the ItemsRepeater control and its associated components.

This documentation applies to WinUI 2 for UWP (for WinUI in the Windows App SDK, see the Windows App SDK namespaces).

ItemsSourceView ItemsSourceView();
public ItemsSourceView ItemsSourceView { get; }
Public ReadOnly Property ItemsSourceView As ItemsSourceView

Property Value

A standardized view of the supported interactions between an ItemsSource object and the ItemsRepeater.

Remarks

ItemsSourceView gives the ItemsRepeater and associated components a standardized view of the available interactions with the data based on the interfaces the data source implements and that the control supports. For example, you might set the ItemsSource to a derived ObservableCollection<T> that implements one or more of the IItemsRangeInfo, ISelectionInfo, and ISupportIncrementalLoading interfaces, which alter the interaction between the data and the control.

Applies to