IXamlDirect.CreateInstance(XamlTypeIndex) 方法

定义

创建 XamlTypeIndex 参数指定的类型的 IXamlDirect 实例。

本文档适用于 Windows 应用 SDKWinUI 的 WinUI 2 for UWP (,请参阅Windows 应用 SDK命名空间) 。

public:
 Platform::Object ^ CreateInstance(XamlTypeIndex typeIndex);
IInspectable CreateInstance(XamlTypeIndex const& typeIndex);
public object CreateInstance(XamlTypeIndex typeIndex);
Public Function CreateInstance (typeIndex As XamlTypeIndex) As Object

参数

typeIndex
XamlTypeIndex

XamlTypeIndex 枚举中列出的一组受支持类型的特定 XAML 类型。

返回

Object

Platform::Object

IInspectable

返回 IXamlDirect 实例。

示例

以下示例演示如何为 Border 元素创建 IXamlDirect 实例。

XamlDirect xd = XamlDirect.GetDefault();
IXamlDirect border = xd.CreateInstance(XamlTypeIndex.Border);
XamlDirect^ xd = XamlDirect::GetDefault();
IXamlDirect^ border = xd->CreateInstance(XamlTypeIndex::Border);

适用于

另请参阅