XamlDirect.CreateInstance(XamlTypeIndex) 方法

定义

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

public:
 virtual IXamlDirectObject ^ CreateInstance(XamlTypeIndex typeIndex) = CreateInstance;
IXamlDirectObject CreateInstance(XamlTypeIndex const& typeIndex);
public IXamlDirectObject CreateInstance(XamlTypeIndex typeIndex);
function createInstance(typeIndex)
Public Function CreateInstance (typeIndex As XamlTypeIndex) As IXamlDirectObject

参数

typeIndex
XamlTypeIndex

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

返回

返回 IXamlDirectObject 实例。

示例

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

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

适用于

另请参阅