共用方式為


ItemsChangedEventArgs.Action 屬性

定義

取得在項目集合上發生的動作。

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 - 集合中的項目已變更。

適用於