tataDan
tataDan
Is there any way to force the message dialogs to always appear on top of the application window?
Is it possible to write a wxGo program that reads a glade or xml file created by a form designer (similar to the way the GtkBuilder object works with GTK)?
When I run the following example code on Linux: ``` package main import ( "github.com/ncruces/zenity" ) func main() { zenity.Question("Are you sure you want to proceed?", zenity.Title("Question"), zenity.QuestionIcon) } ```...
The README.md states "native OS dialogs are still possible via 3rd-party libraries". Can anyone recommend any such library for implementing a file save dialog in Linux (or possibly Windows)?
Has any consideration been given to the possibility of adding a binding for the webview bind function similar to the one for go? For example, in go it is possible...