NotifyCollectionChangedEventArgs Constructeur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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
Valeur Action à signaler.
- 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.