IDesktopWindowXamlSourceNative::AttachToWindow method (windows.ui.xaml.hosting.desktopwindowxamlsource.h)
Attaches the current IDesktopWindowXamlSourceNative instance to a parent UI element in your desktop app that is associated with a window handle.
HRESULT AttachToWindow(
HWND parentWnd
);
parentWnd
Type: HWND
The window handle of the parent UI element in which you want to host a WinRT XAML control.
If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
For a code example that demonstrates how to use this method, see XamlBridge.cpp in the SampleCppApp sample in the XAML Island samples repo.
Important
Make sure that your code calls the AttachToWindow method only once per DesktopWindowXamlSource object. Calling this method more than once for a DesktopWindowXamlSource object could result in a memory leak.
Requirement | Value |
---|---|
Minimum supported client | Windows 10, version 1903 (build 18362) |
Header | windows.ui.xaml.hosting.desktopwindowxamlsource.h |