ObservableCollection<T>.OnCollectionChanged Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Déclenche l’événement CollectionChanged avec les arguments fournis.
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)
Paramètres
Arguments de l’événement déclenché.
Exemples
Lors de la substitution de cette méthode, appelez l’implémentation de base ou utilisez la BlockReentrancy méthode pour gérer les modifications de collection entrante, comme dans l’exemple suivant :
using (BlockReentrancy())
{
// OnCollectionChanged call
}
Using BlockReentrancy()
' OnCollectionChanged call
End Using
Remarques
Les propriétés et méthodes qui modifient cette collection déclenchent l’événement CollectionChanged via cette virtual
méthode.