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, IList newItems, IList 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

newItems
IBindableVector IList

Valor NewItems que se va a notificar.

oldItems
IBindableVector IList

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 la acción, cualquiera de los valores de este constructor puede pasarse potencialmente como null, en función del cambio de colección y de la acción correspondiente que se notifica.

Se aplica a

Consulte también