The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
ISwapChainBackgroundPanelNative interface
Provides interoperation between XAML and a DirectX swap chain.
Members
The ISwapChainBackgroundPanelNative interface inherits from the IUnknown interface. ISwapChainBackgroundPanelNative also has these types of members:
Methods
The ISwapChainBackgroundPanelNative interface has these methods.
| Method | Description |
|---|---|
| SetSwapChain |
Sets the DirectX swap chain for SwapChainBackgroundPanel. |
Remarks
This interface provides the native implementation of the Windows::UI::XAML::Control::SwapChainBackgroundPanel Windows Runtime type. To obtain a pointer to ISwapChainBackgroundPanelNative, you must cast a SwapChainBackgroundPanel instance to IInspectable or IUnknown, and call QueryInterface.
Microsoft::WRL::ComPtr<ISwapChainBackgroundPanelNative> m_swapChainNative; // ... IInspectable* panelInspectable = (IInspectable*) reinterpret_cast<IInspectable*>(swapChainPanel); panelInspectable->QueryInterface(__uuidof(ISwapChainBackgroundPanelNative), (void **)&m_swapChainNative);
See also
Build date: 5/16/2013
