UIElementCollection.ReplaceAll(UIElement[]) 方法

定义

首先清除集合,然后将提供的数组作为新项插入。

public:
 virtual void ReplaceAll(Platform::Array <UIElement ^> ^ items) = IVector<UIElement ^>::ReplaceAll;
void ReplaceAll(winrt::array_view <UIElement const&> const& items);
public void ReplaceAll(UIElement[] items);
function replaceAll(items)
Public Sub ReplaceAll (items As UIElement())

参数

items
UIElement[]

新的集合项。

实现

注解

对于跟踪“已更改”事件的实现,初始重置会触发事件,但添加的项不会触发离散的每个项事件。

如果使用 C# 或 Microsoft Visual Basic 进行编程,则没有与 ReplaceAll 等效的单次调用。 使用 Clear ,然后连续调用 Add

适用于

另请参阅