go-webview2 icon indicating copy to clipboard operation
go-webview2 copied to clipboard

WebView2 bindings for pure Go, without CGo, based on the webview/webview bindings.

Results 32 go-webview2 issues
Sort by recently updated
recently updated
newest added

How to hide titlebar and App can be moved ? i try to hide titlebar with Hwnd, and html set webkit-app-region: drag but it can't move ...

question

Please see details https://github.com/MicrosoftEdge/WebView2Feedback/issues/1968

I'm experimenting with Wails and used some simple Go code that queries some hardware settings. When doing so, I get an RPC_E_CHANGED_MODE error. I think this is related to how...

question

This appears on the console on exit: `[0925/110501.167:ERROR:window_impl.cc(114)] Failed to unregister class Chrome_WidgetWin_0. Error = 0` There's a few references to it but the most specific I can find is...

bug

Is there a way to customize the title bar icon? I only have one way to remove the title icon (But based on a version of my fork a long...

enhancement

High-resolution screen users need support, the demo now looks very vague (Windows11 125% zoom) ![image](https://user-images.githubusercontent.com/49786711/127959022-afe3d0e4-d9c2-416c-ac1a-b1a0ea26cda1.png)

enhancement

go func(){ ... callback(func(){ w.Eval(" alert('Hello from webview!'); ") ) .. }

Add bindings for [Navigation Starting](https://docs.microsoft.com/en-us/dotnet/api/microsoft.web.webview2.core.corewebview2.navigationstarting?view=webview2-dotnet-1.0.1343.22) and [Navigation Completed](https://docs.microsoft.com/en-us/dotnet/api/microsoft.web.webview2.core.corewebview2.navigationcompleted?view=webview2-dotnet-1.0.1343.22) which would also resolve the issue #50 . TL;DR Changes : - Chromium - Add handler and args for Navigation Starting -...

It seems that `w.Bind()` and `w.Init()` don't work on the first page load. A workaround is to reload the page. I've reproduced the problem along with a workaround: https://github.com/rcambrj/webview2-bug

I use wails to transmit binary image streams, but I found that if I bind the method of transmitting binary, wails will automatically base64 encode the binary. Is there a...

question