BindingList<T>.SetItem(Int32, T) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
以指定的項目取代位於指定索引上的項目。
protected:
override void SetItem(int index, T item);
protected override void SetItem (int index, T item);
override this.SetItem : int * 'T -> unit
Protected Overrides Sub SetItem (index As Integer, item As T)
參數
- index
- Int32
要被取代之項目的索引,這個索引以零起始。
- item
- T
指定之索引處的項目新值。 參考類型的值可以是 null
。
例外狀況
備註
設定項目之後, SetItem 引發 ListChanged 類型的 ItemChanged 事件,指出已設定之專案的索引。