You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Although the current provided API has a wide coverage to more common use cases, some low-level operations via Win32 API are still mandatory from time to time. In this case, the ability to get the actual HWND for the webview would be necessary.
Describe the solution you'd like
Add the hwnd() or any variant to the WebView type to get the hwnd inside the InnerWebView.
Describe alternatives you've considered
Current there's no other way to get the HWND as far as I can tell. Since the webview does not have a title, the FindWindowW function cannot be used to retrieve the handle for webview window. Also, the hwnd itself has been hidden behind the InnerWebView and WebView is only served as a proxy to work with the inner one.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Although the current provided API has a wide coverage to more common use cases, some low-level operations via Win32 API are still mandatory from time to time. In this case, the ability to get the actual HWND for the webview would be necessary.
Describe the solution you'd like
Add the
hwnd()
or any variant to theWebView
type to get thehwnd
inside theInnerWebView
.Describe alternatives you've considered
Current there's no other way to get the HWND as far as I can tell. Since the webview does not have a
title
, theFindWindowW
function cannot be used to retrieve the handle for webview window. Also, the hwnd itself has been hidden behind theInnerWebView
andWebView
is only served as a proxy to work with the inner one.The text was updated successfully, but these errors were encountered: