IXamlDirect.CreateInstance(XamlTypeIndex) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
创建 XamlTypeIndex 参数指定的类型的 IXamlDirect 实例。
本文档适用于 Windows 应用 SDK 中 WinUI 的 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 类型。
返回
返回 IXamlDirect 实例。
示例
以下示例演示如何为 Border 元素创建 IXamlDirect 实例。
XamlDirect xd = XamlDirect.GetDefault();
IXamlDirect border = xd.CreateInstance(XamlTypeIndex.Border);
XamlDirect^ xd = XamlDirect::GetDefault();
IXamlDirect^ border = xd->CreateInstance(XamlTypeIndex::Border);