UIElementCollection.ReplaceAll(UIElement[]) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
一開始會清除集合,然後將提供的陣列插入為新專案。
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。