UIElementWeakCollection.InsertAt(UInt32, UIElement) 方法

定义

在指定的索引处插入指定的项。

public:
 virtual void InsertAt(unsigned int index, UIElement ^ value) = IVector<UIElement ^>::InsertAt;
void InsertAt(uint32_t const& index, UIElement const& value);
public void InsertAt(uint index, UIElement value);
function insertAt(index, value)
Public Sub InsertAt (index As UInteger, value As UIElement)

参数

index
UInt32

unsigned int

uint32_t

从零开始的索引,项将插入到此处。

value
UIElement

要插入到集合中的对象。

实现

M:Windows.Foundation.Collections.IVector1.InsertAt(System.UInt32,0) M:Windows.Foundation.Collections.IVector1.InsertAt(unsigned int,0) M:Windows.Foundation.Collections.IVector1.InsertAt(uint32_t,0)

注解

InsertAt 展开集合并移动所有后续索引项一个。

相比之下,SetAt 替换索引处的项,并且集合计数保持不变。

适用于