共用方式為


NotifyCollectionChangedEventArgs 建構函式

定義

初始化 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)

參數

newItems
IBindableVector IList

要報告的 NewItems 值。

oldItems
IBindableVector IList

要報告的 OldItems 值。

newIndex
Int32

int

要報告的 NewStartingIndex 值。

oldIndex
Int32

int

要報告的 OldStartingIndex 值。

備註

使用 .NET 進行程式設計時,這個類別會隱藏,開發人員應該使用 System.Collections.Specialized.NotifyCollectionChangedEventArgs 類別。

除了 action以外,此建構函式的任何值都可能會以 Null 的形式傳遞,視所報告的集合變更和對應的 Action 而定。

適用於

另請參閱