Condividi tramite


IXamlDirect.ClearCollection(Object) Metodo

Definizione

Rimuove tutti gli elementi dall'insieme IXamlDirect specificato.

Questa documentazione si applica a WinUI 2 per UWP (per WinUI nella SDK per app di Windows, vedere gli spazi dei nomi SDK per app di Windows).

public:
 void ClearCollection(Platform::Object ^ xamlDirectObject);
void ClearCollection(IInspectable const& xamlDirectObject);
public void ClearCollection(object xamlDirectObject);
Public Sub ClearCollection (xamlDirectObject As Object)

Parametri

xamlDirectObject
Object

Platform::Object

IInspectable

Fa riferimento alla raccolta IXamlDirect specifica.

Esempio

XamlDirect xd = XamlDirect.GetDefault();

IXamlDirect relativePanel = xd.CreateInstance(XamlTypeIndex.RelativePanel);

IXamlDirect childrenCollection = xd.GetXamlDirectObjectProperty(relativePanel, XamlPropertyIndex.Panel_Children);

IXamlDirect button = xd.CreateInstance(XamlTypeIndex.Button);
xd.AddToCollection(childrenCollection, button);

xd.ClearCollection(childrenCollection);
XamlDirect^ xd = XamlDirect::GetDefault();

IXamlDirect^ relativePanel = xd->CreateInstance(XamlTypeIndex::RelativePanel);

IXamlDirect^ childrenCollection = xd->GetXamlDirectObjectProperty(relativePanel, XamlPropertyIndex::Panel_Children);

IXamlDirect^ button = xd->CreateInstance(XamlTypeIndex::Button);
xd->AddToCollection(childrenCollection, button);

xd->ClearCollection(childrenCollection);

Si applica a

Vedi anche