Partager via


NotifyCollectionChangedEventArgs Constructeur

Définition

Initialise une nouvelle instance de la classe 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)

Paramètres

newItems
IBindableVector IList

Valeur NewItems à signaler.

oldItems
IBindableVector IList

Valeur OldItems à signaler.

newIndex
Int32

int

Valeur NewStartingIndex à signaler.

oldIndex
Int32

int

Valeur OldStartingIndex à signaler.

Remarques

Lors de la programmation avec .NET, cette classe est masquée et les développeurs doivent utiliser la classe System.Collections.Specialized.NotifyCollectionChangedEventArgs .

En dehors de l’action, l’une des valeurs de ce constructeur peut potentiellement être passée comme null, en fonction de la modification de la collection et de l’action correspondante signalée.

S’applique à

Voir aussi