XamlDirect.CreateInstance(XamlTypeIndex) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
创建由 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);