Compartilhar via


Interface ISwapChainBackgroundPanelNative (windows.ui.xaml.media.dxinterop.h)

Fornece interoperação entre XAML e uma cadeia de troca DirectX.

Herança

A interface ISwapChainBackgroundPanelNative herda da interface IUnknown . ISwapChainBackgroundPanelNative também tem estes tipos de membros:

Métodos

A interface ISwapChainBackgroundPanelNative tem esses métodos.

 
ISwapChainBackgroundPanelNative::SetSwapChain

Define a cadeia de troca DirectX para SwapChainBackgroundPanel.

Comentários

Essa interface fornece a implementação nativa do tipo de Windows Runtime Windows::UI::XAML::Control::SwapChainBackgroundPanel. Para obter um ponteiro para ISwapChainBackgroundPanelNative, você deve converter uma instância swapChainBackgroundPanel em IInspectable ou IUnknown e chamar QueryInterface.


Microsoft::WRL::ComPtr<ISwapChainBackgroundPanelNative>	m_swapChainNative;
// ...
IInspectable* panelInspectable = (IInspectable*) reinterpret_cast<IInspectable*>(swapChainPanel);
panelInspectable->QueryInterface(__uuidof(ISwapChainBackgroundPanelNative), (void **)&m_swapChainNative);
	

Requisitos

Requisito Valor
Cliente mínimo com suporte Windows 8.1 [aplicativos da área de trabalho | Aplicativos UWP]
Servidor mínimo com suporte Windows Server 2012 R2 [aplicativos da área de trabalho | Aplicativos UWP]
Plataforma de Destino Windows
Cabeçalho windows.ui.xaml.media.dxinterop.h

Confira também

Interoperabilidade entre DirectX e XAML