Share via


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.

ItemsSourceView ItemsSourceView();
public ItemsSourceView ItemsSourceView { get; }
var itemsSourceView = itemsRepeater.itemsSourceView;
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