david-risney / WebView2Utilities

WebView2Utilities helps you develop and debug Microsoft Edge WebView2 apps.
https://david-risney.github.io/WebView2Utilities/
MIT License
25 stars 7 forks source link

New method of finding parent/child doesn't work for UWP apps #54

Open david-risney opened 1 year ago

david-risney commented 1 year ago

The HWND walking is using EnumWindows which doesn't work for UWP apps and so those aren't included. According to stackoverflow links, FindWindowEx does work for UWP app windows.

david-risney commented 1 year ago

In addition, WebView2 attaches to the CoreWindow not a child HWND and so we also need to check for that class name.