func main() { ui.RunEx(os.Args, func() { ed := NewCodeEdit() ed.ResizeWithWidthHeight(400, 400) ed.Show() }) }
func main() { ui.RunEx(os.Args, func() { w, err := NewCalclatorForm() if err != nil { log.Fatalln(err) } w.Show() }) }
func main() { ui.RunEx(os.Args, func() { app := ui.Application() app.SetOrganizationName("GoQt") app.SetApplicationName("Application Example") w := NewMainWindow() w.Show() }) }
func main() { ui.RunEx(os.Args, func() { dlg := NewDialog() dlg.Show() }) }
func main() { ui.RunEx(os.Args, main_ui) }