iSwapChainBackgroundPanelNative 接口 (windows.ui.xaml.media.dxinterop.h)
提供 XAML 与 DirectX 交换链之间的互操作。
继承
ISwapChainBackgroundPanelNative 接口继承自 IUnknown 接口。 ISwapChainBackgroundPanelNative 还具有以下类型的成员:
方法
ISwapChainBackgroundPanelNative 接口具有以下方法。
ISwapChainBackgroundPanelNative::SetSwapChain 设置 SwapChainBackgroundPanel 的 DirectX 交换链。 |
注解
此接口提供 Windows::UI::XAML::Control::SwapChainBackgroundPanel Windows 运行时类型的本机实现。 若要获取指向 ISwapChainBackgroundPanelNative 的指针,必须将 SwapChainBackgroundPanel 实例强制转换为 IInspectable 或 IUnknown,并调用 QueryInterface。
Microsoft::WRL::ComPtr<ISwapChainBackgroundPanelNative> m_swapChainNative;
// ...
IInspectable* panelInspectable = (IInspectable*) reinterpret_cast<IInspectable*>(swapChainPanel);
panelInspectable->QueryInterface(__uuidof(ISwapChainBackgroundPanelNative), (void **)&m_swapChainNative);
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows 8.1 [桌面应用 |UWP 应用] |
最低受支持的服务器 | Windows Server 2012 R2 [桌面应用 |UWP 应用] |
目标平台 | Windows |
标头 | windows.ui.xaml.media.dxinterop.h |