jason

Results 2 comments of jason

我也遇到过,弹出对话框就闪退,有时候弹出对话框选择取消就闪退(v2.8.1) 下面是选择取消对话框,删除抛出的日志 2024/05/29 11:16:41 The parameter is incorrect. [0529/111641.543:ERROR:window_impl.cc(121)] Failed to unregister class Chrome_WidgetWin_0. Error = 0

3.0 依然有此问题 ![image](https://github.com/wailsapp/wails/assets/90999534/0a2aae90-9698-4717-8572-09df2cdc4168) 下面代码改成直接调用 windows api 就没有问题 package main import ( "context" "fmt" "syscall" "unsafe" ) // App struct type App struct { ctx context.Context } var ( modComdlg32 =...