CollectionView.OnCollectionChanged Método

Definición

Genera el evento CollectionChanged.

Sobrecargas

OnCollectionChanged(NotifyCollectionChangedEventArgs)

Genera el evento CollectionChanged.

OnCollectionChanged(Object, NotifyCollectionChangedEventArgs)

Genera el evento CollectionChanged.

OnCollectionChanged(NotifyCollectionChangedEventArgs)

Genera el evento CollectionChanged.

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

Parámetros

args
NotifyCollectionChangedEventArgs

Objeto NotifyCollectionChangedEventArgs que se pasa al controlador de eventos.

Comentarios

Tenga en cuenta cualquier criterio de ordenación, filtrado o agrupación antes de llamar a este método para generar el CollectionChanged evento.

Se aplica a

OnCollectionChanged(Object, NotifyCollectionChangedEventArgs)

Genera el evento CollectionChanged.

protected:
 void OnCollectionChanged(System::Object ^ sender, System::Collections::Specialized::NotifyCollectionChangedEventArgs ^ args);
protected void OnCollectionChanged (object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs args);
member this.OnCollectionChanged : obj * System.Collections.Specialized.NotifyCollectionChangedEventArgs -> unit
Protected Sub OnCollectionChanged (sender As Object, args As NotifyCollectionChangedEventArgs)

Parámetros

sender
Object

Remitente del evento.

args
NotifyCollectionChangedEventArgs

Objeto NotifyCollectionChangedEventArgs que se pasa al controlador de eventos.

Comentarios

Este método llama ProcessCollectionChanged a si está en el distribuidor de subprocesos de interfaz de usuario correcto y nunca se ha actualizado desde un subproceso diferente, o publica el cambio en el distribuidor para procesarlo en el subproceso correcto.

Se aplica a