Compartir a través de


NotifyCollectionChangedEventArgs Constructor

Definición

Inicializa una nueva instancia de la clase NotifyCollectionChangedEventArgs .

public:
 NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction action, IBindableVector ^ newItems, IBindableVector ^ oldItems, int newIndex, int oldIndex);
 NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction const& action, IBindableVector const& newItems, IBindableVector const& oldItems, int const& newIndex, int const& oldIndex);
public NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction action, IBindableVector newItems, IBindableVector oldItems, int newIndex, int oldIndex);
function NotifyCollectionChangedEventArgs(action, newItems, oldItems, newIndex, oldIndex)
Public Sub New (action As NotifyCollectionChangedAction, newItems As IList, oldItems As IList, newIndex As Integer, oldIndex As Integer)

Parámetros

action
NotifyCollectionChangedAction

Valor de acción que se va a notificar.

newItems
IBindableVector

Valor NewItems que se va a notificar.

oldItems
IBindableVector

Valor OldItems que se va a notificar.

newIndex
Int32

int

Valor NewStartingIndex que se va a notificar.

oldIndex
Int32

int

Valor OldStartingIndex que se va a notificar.

Comentarios

Al programar con .NET, esta clase está oculta y los desarrolladores deben usar la clase System.Collections.Specialized.NotifyCollectionChangedEventArgs .

Aparte de action, cualquiera de los valores de este constructor puede pasarse potencialmente como NULL, dependiendo del cambio de colección y de la acción correspondiente que se está notificando.

Se aplica a

Consulte también