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
When I used the code below, encrypted PDF files failed to navigate to specific pages by appending "#page=Index" to the URL. After troubleshooting, it was identified that this issue was caused by upgrading the Edge browser.
Current version: 144.0.3719.82 (This version only fails on Intel's new platforms; some machines still work after the upgrade but stop working once the OS is updated to the latest version)
Working version: 140.0.3485.54 (This version works on all machines)
I attempted to specify the version of WebView2 via code, but it consistently points to version 144.0.3719.82.
var envOptions = new CoreWebView2EnvironmentOptions();
var env = await CoreWebView2Environment.CreateWithOptionsAsync(Path.Combine(AppDomain.CurrentDomain.BaseDirectory,"webview"), AppDomain.CurrentDomain.BaseDirectory, envOptions);
await MyWebView.EnsureCoreWebView2Async(env);
MyWebView.CoreWebView2.Settings.AreBrowserAcceleratorKeysEnabled = true;
MyWebView.Source = viewModel.PdfSource;
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
When I used the code below, encrypted PDF files failed to navigate to specific pages by appending "#page=Index" to the URL. After troubleshooting, it was identified that this issue was caused by upgrading the Edge browser.
Current version: 144.0.3719.82 (This version only fails on Intel's new platforms; some machines still work after the upgrade but stop working once the OS is updated to the latest version)
Working version: 140.0.3485.54 (This version works on all machines)
I attempted to specify the version of WebView2 via code, but it consistently points to version 144.0.3719.82.
Beta Was this translation helpful? Give feedback.
All reactions