Replies: 1 comment
-
Calling |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My program has a total of 2 windows, and my second window is intended to display the program's running logs. The first log window was opened normally, but when I manually closed the window, clicking the button did not display the window again
Here are the relevant codes:
//关于查看任务 form := widget.NewForm() myWindow2 := myApp.NewWindow(
查看任务情况) myWindow2.SetContent(container.NewVScroll(form))
`//查看运行情况
chakanrenwu.OnTapped = func() {
myWindow2.Show()
In the actual operation of the program, I closed myWindows 2 and the second time I clicked open, I couldn't jump out of the window
Beta Was this translation helpful? Give feedback.
All reactions