VirtualizingLayout.OnItemsChangedCore 方法

定义

当分配给容器元素的数据收集 (ItemsSource) 更改时,通知布局。

本文档适用于 Windows 应用 SDKWinUI 的 WinUI 2 for UWP (,请参阅Windows 应用 SDK命名空间) 。

void OnItemsChangedCore(VirtualizingLayoutContext const& context, IInspectable const& source, NotifyCollectionChangedEventArgs const& args);
protected virtual void OnItemsChangedCore(VirtualizingLayoutContext context, object source, NotifyCollectionChangedEventArgs args);
Protected Overridable Sub OnItemsChangedCore (context As VirtualizingLayoutContext, source As Object, args As NotifyCollectionChangedEventArgs)

参数

context
VirtualizingLayoutContext

促进布局与其主机容器之间的通信的上下文对象。

source
Object

IInspectable

数据源。

注解

选择维护视区中元素边界的布局可以使用此布局在数据发生更改时更新其记录。 这对于更复杂的虚拟化布局非常有用,这些布局必须测量每个项的内容作为布局的一部分。

适用于