I have a MAUI application that displays a Blazor form through the BlazorWebView. The application is only foreseen to be used on Windows desktops for now.Since the webview is using Microsoft Edge WebView2 under the hood, it naturally leverages some of the edge browser features as well.
In Edge, when you have the focus in a given input field, you may have a popup that displays some previously entered informations from which you can just click an option to fill in the field.
For the case of my application, it is nowhere near handy to have such a popup, and I believes it hides more things that it is useful.
Now when having this trouble on the edge browser itself, as you can see from the image above, you have a specific button that leads you to the browser settings, and let you disable that option for your browser altogether, which would be a good enough solution for me.
Halas, when running the same code from the webview this time, this is what it looks like.
As you may see, this time there is no settings since we are not actually running in the brower itself.
I would like to either know if there is a way to either configure that on the machine that runs the client, or block it from some kind of application configuration directly.