NotifyCollectionChangedEventArgs Constructor
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
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
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.