Is there something like:
Control.FromHandle(IntPtr)
For WPF. This method is available for WinForms, so I'm just wondering if WPF has it too.
Thanks!
|
feedback
|
|
Most WPF elements do not create HWNDs, so this will usually only apply to top-level elements like Window. You can use HwndSource.FromHwnd to get the PresentationSource and then use the RootVisual property to get the root of the visual tree:
Also see WPF and Win32 Interoperation Overview for more details on how WPF uses HWNDs:
| |||
|
feedback
|