次の方法で共有


VirtualizingLayout.OnItemsChangedCore メソッド

定義

コンテナー要素 (ItemsSource) に割り当てられたデータ コレクションが変更されたときに、レイアウトに通知します。

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

パラメーター

context
VirtualizingLayoutContext

レイアウトとそのホスト コンテナー間の通信を容易にするコンテキスト オブジェクト。

source
Object

IInspectable

データ ソース。

args
NotifyCollectionChangedEventArgs

コレクションの変更に関するデータ。

注釈

ビューポート内の要素の境界に対して独自のレコードを保持することを選択したレイアウトでは、これを使用して、データに変更が発生した場合にレコードを更新できます。 これは、レイアウトの一部として各項目の内容を測定する必要がある、より複雑なレイアウトの仮想化に役立ちます。

適用対象