ItemCollection.RemoveAt(Int32) 方法

定义

移除位于集合或视图中的指定索引处的项。

public:
 virtual void RemoveAt(int removeIndex);
public void RemoveAt (int removeIndex);
abstract member RemoveAt : int -> unit
override this.RemoveAt : int -> unit
Public Sub RemoveAt (removeIndex As Integer)

参数

removeIndex
Int32

要移除的项的从零开始的索引。

实现

例外

ItemCollection 为只读,因为它处于 ItemsSource 模式或 DeferRefresh 正在起作用。

索引超出范围。

注解

从集合中删除项时,任何具有较高索引值的剩余项在集合大小折叠时将索引递减一。

适用于