次の方法で共有


INotifyCollectionChanged.CollectionChanged イベント

定義

コレクションに変更が生じた場合に発生します。

// Register
event_token CollectionChanged(NotifyCollectionChangedEventHandler const& handler) const;

// Revoke with event_token
void CollectionChanged(event_token const* cookie) const;

// Revoke with event_revoker
INotifyCollectionChanged::CollectionChanged_revoker CollectionChanged(auto_revoke_t, NotifyCollectionChangedEventHandler const& handler) const;
event NotifyCollectionChangedEventHandler CollectionChanged;
function onCollectionChanged(eventArgs) { /* Your code */ }
iNotifyCollectionChanged.addEventListener("collectionchanged", onCollectionChanged);
iNotifyCollectionChanged.removeEventListener("collectionchanged", onCollectionChanged);
- or -
iNotifyCollectionChanged.oncollectionchanged = onCollectionChanged;
Event CollectionChanged As NotifyCollectionChangedEventHandler 

イベントの種類

注釈

.NET を使用してプログラミングする場合、このインターフェイスは非表示になり、開発者は System.Collections.Specialized.INotifyCollectionChanged インターフェイスを使用する必要があります。

適用対象

こちらもご覧ください