ObservableCollection<T>.OnCollectionChanged 方法

定义

通过提供的参数引发 CollectionChanged 事件。

protected:
 virtual void OnCollectionChanged(System::Collections::Specialized::NotifyCollectionChangedEventArgs ^ e);
protected virtual void OnCollectionChanged (System.Collections.Specialized.NotifyCollectionChangedEventArgs e);
abstract member OnCollectionChanged : System.Collections.Specialized.NotifyCollectionChangedEventArgs -> unit
override this.OnCollectionChanged : System.Collections.Specialized.NotifyCollectionChangedEventArgs -> unit
Protected Overridable Sub OnCollectionChanged (e As NotifyCollectionChangedEventArgs)

参数

e
NotifyCollectionChangedEventArgs

要引发事件的自变量。

示例

重写此方法时,调用基实现或使用 BlockReentrancy 方法来处理可重入集合更改,如以下示例所示:

using (BlockReentrancy())
{
    // OnCollectionChanged call
}
Using BlockReentrancy()
    ' OnCollectionChanged call
End Using

注解

修改此集合的属性和方法通过此方法virtual引发 CollectionChanged 事件。

适用于