cbra-caa
cbra-caa
We have experienced a similar issue for users with laptops connecting and disconnecting an additional screen. Only windows containing a webview is unresponsive in our case. All other windows from...
Yep, just exactly that setting. The app catches the WM_DISPLAYCHANGE and then disposes the webview. After a set amount of time (3 seconds) the webview is rebuild and then the...
**MainWindow.xaml** ``` ``` **MainWindow.xaml.cs** ``` using System; using System.Reflection; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Interop; using Microsoft.Web.WebView2.Core; using Microsoft.Web.WebView2.Wpf; namespace ZoomIssueApp { public partial class MainWindow...
@champnic That might be the case. Though if that is the case, why does the 'crash' only occur for changes to the DPI that are different from the level when...
A colleague recommended me another dpi-independent video recorder, aka. my phone, so now you can experience both the bug, and my very mediocre dual-wielding abilities. 😅 The video is too...
@champnic I sent you an email with a drive-link ;)
If I dont use the 'Hide WebView on Resolution Change' function the WebView acts as expected and responds correctly to the DPI change 98% of the time. The harder-to-hit problem,...
> Can also reproduce the behavior. I decoupled the event using reflection and noticed that the RenderCapability.TierChanged event is attached to GraphicsItemD3DImage but is not removed again when disposing An...
For others who would like to experiment with the CompositionControl without it leaking here is a short method that can be called on Unloaded. OBS: The code assumes that you...
Reviving this issue since we have a couple of examples where the sealed keyword makes it hard to work with the datagrid. 1. When loading data, we lock the datagrid...