mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
30 lines
386 B
Go
30 lines
386 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
qt "github.com/mappu/miqt/qt6"
|
|
)
|
|
|
|
func main() {
|
|
|
|
qt.NewQApplication(os.Args)
|
|
|
|
btn := qt.NewQPushButton3("Hello world!")
|
|
btn.SetFixedWidth(320)
|
|
|
|
var counter int = 0
|
|
|
|
btn.OnPressed(func() {
|
|
counter++
|
|
btn.SetText(fmt.Sprintf("You have clicked the button %d time(s)", counter))
|
|
})
|
|
|
|
btn.Show()
|
|
|
|
qt.QApplication_Exec()
|
|
|
|
fmt.Println("OK!")
|
|
}
|