ItemsChangedEventArgs.Action 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得在項目集合上發生的動作。
public:
property int Action { int get(); };
int Action();
public int Action { get; }
var int32 = itemsChangedEventArgs.action;
Public ReadOnly Property Action As Integer
屬性值
Int32
int
發生的動作。
備註
int
此屬性的值會對應至CollectionChange列舉的值。
值 | 動作 |
---|---|
0 | 重設 - 集合已變更。 |
1 | ItemInserted - 專案會新增至集合。 |
2 | ItemRemoved - 從集合中移除專案。 |
3 | ItemChanged - 集合中的專案已變更。 |