Partilhar via


NotifyCollectionChangedEventArgs Construtor

Definição

Inicializa uma nova instância da 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)

Parâmetros

newItems
IBindableVector IList

O valor NewItems a ser relatado.

oldItems
IBindableVector IList

O valor OldItems a ser relatado.

newIndex
Int32

int

O valor NewStartingIndex a ser relatado.

oldIndex
Int32

int

O valor OldStartingIndex a ser relatado.

Comentários

Ao programar com o .NET, essa classe fica oculta e os desenvolvedores devem usar a classe System.Collections.Specialized.NotifyCollectionChangedEventArgs .

Além da ação, qualquer um dos valores para esse construtor pode ser passado como nulo, dependendo da alteração da coleção e da Ação correspondente que está sendo relatada.

Aplica-se a

Confira também