xceyds
xceyds
The `WebView2CompositionControl` has a double-click event [OnMouseDoubleClick](https://learn.microsoft.com/en-us/dotnet/api/microsoft.web.webview2.wpf.webview2compositioncontrol.onmousedoubleclick). You can override the `OnMouseDoubleClick` event of `WebView2CompositionControl` to make it do nothing. ```csharp public class CustomWebView2CompositionControl : WebView2CompositionControl { protected override void...
If implementing the default system borders on Windows 10 is too difficult, could we simply hide the borders and only keep the shadow, just like in Electron? 