ItemsRepeater.ItemsSourceView Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.