Freigeben über


IXamlDirect.GetCollectionCount(Object) Methode

Definition

Gibt die Anzahl der Elemente in der angegebenen IXamlDirect-Auflistung zurück.

Diese Dokumentation gilt für WinUI 2 für UWP (für WinUI im Windows App SDK, siehe die Windows App SDK Namespaces).

public:
 unsigned int GetCollectionCount(Platform::Object ^ xamlDirectObject);
uint32_t GetCollectionCount(IInspectable const& xamlDirectObject);
public uint GetCollectionCount(object xamlDirectObject);
Public Function GetCollectionCount (xamlDirectObject As Object) As UInteger

Parameter

xamlDirectObject
Object

Platform::Object

IInspectable

Bezieht sich auf die spezifische IXamlDirect-Auflistung .

Gibt zurück

UInt32

unsigned int

uint32_t

Anzahl der Elemente.

Beispiele

Im folgenden Beispiel wird gezeigt, wie Sie die Anzahl von Panel.Children über die IXamlDirect-Instanz abrufen.

XamlDirect xd = XamlDirect.GetDefault();

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

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

uint count = xd.GetCollectionCount(childrenCollection);
XamlDirect^ xd = XamlDirect::GetDefault();

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

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

UINT count = xd->GetCollectionCount(childrenCollection);

Gilt für: