826 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
68
views
E_UNEXPECTED((8000FFFF) error while calling functions on a webview2 element
I have a windows app sdk application using reactiveUI. I'm creating a webview2 in the UI and passing the control to the element from the code behind to a manager class which sets the uri for the view.
...
0
votes
1
answer
129
views
How to display Openstreetmap map on C# & WPF ? I only get black screen
In mainwindow.xaml.cs, I added a toggle button event to switch from current mode view to the interactive Open Google Streetmap view.
At the top I added:
using Microsoft.Web.WebView2.Core;
and then in ...
0
votes
0
answers
186
views
WebView2 control in an UWP app crashes the entire console on Xbox One
Long story short: an app with a WebView2 crashes the entire system if run on a retail Xbox One
I'm having this strange issue. The crash is not just the app closing, is the entire console that restarts ...
0
votes
0
answers
49
views
How do i disable the Slide Over Submenu on Hamburger Menu
In my application a hamburger menu by DevExpress is used. All user controls are collected in several groups. Icons of each group are displayed in the menu. When clicked on the menu expands inline ...
0
votes
1
answer
128
views
Pyinstaller, exe file does not run for other users
I have a problem with Pyinstaller, when I build the program everything works fine, but when I publish files on github or archive.org and download from there, when I try to run it, an error
Traceback (...
0
votes
0
answers
71
views
Can't debug Javascript in WebView2 in a Windows c# app in VS2022
In Visual Studio 2022, I would like to set breakpoints, watch variables, and log output from the Javascript of a WebView2 component used in a Windows app written in C#.
This should be possible, ...
1
vote
1
answer
356
views
Tauri window opens fine on macOS but hangs with blank window on Windows (no logs after #2)
I’m developing a desktop app with Rust + Tauri (v2.5) + SvelteKit.
On macOS my command for opening a new settings window works perfectly. On Windows however, the app freezes when building the window: ...
0
votes
0
answers
105
views
WebView2 control appears on top of all other controls only when running as .exe (but it works fine in Visual studio)
I'm developing a WPF application that uses the WebView2 control.
Every thing works perfectly when I run the application from Visual Studio, but when I run generated .exe (under Debug folder, outside ...
0
votes
1
answer
110
views
How to specify login for proxy requiring authorization in WebView2?
How to specify login and password of proxy that requires authorization in WebView2?
This question was also asked on Autofill Proxy requirements webview2 There is an answer to the question of how to ...
1
vote
0
answers
291
views
Unable to load file or assembly 'Microsoft.Web.WebView2.Wpf'
Why can I not use WebView2 in my .NET 8.0 WPF application?
I can load the package from NuGet, the dlls are referenced in my project:
Microsoft.Web.WebView2.Core
Microsoft.Web.WebView2.WinForms
...
1
vote
0
answers
110
views
WebView2 issue in Visual Studio 2019
I have been struggling with this for a few days now trying to add the webview2 control to one of my projects.
I can generate a new Project add the WebView2 control and everything works as "...
-1
votes
1
answer
98
views
webview2 receive back text from JS added to page
We used to use the webbrowser form and this worked. We have now changed to the webview2. I have everything working except the web page needs to send a string back to our program and i can't get that ...
1
vote
1
answer
354
views
How do you "reset" a WebView2 control to stop users going "back" to previously loaded pages?
We are using a WebView2 control in a .NET Framework (targeting 4.8) solution. We use it for "previewing" PDF files. The user can navigate through our app, click on a PDF shown in a list, and ...
0
votes
0
answers
35
views
Get user-edited content of interactively shown email with MS Graph in Browser
Environment: C#, .NET8, MS Graph API, Webview2, Windows Forms
I created an email with Graph, got its "WebLink" URL, now showing it embedded in WebView2. User edits the email and has changed ...
0
votes
1
answer
270
views
How to get results from an async Javascript script using C# and Microsoft WebView2 control?
I have the following Javascript script:
async function getIPAddress() {
var thisFuncName = arguments.callee.toString().match(/function ([^\(]+)/)[1];
var retValue = {
'Result': true,
...