英文:
Simple, effective GUI packages in GoLang
问题
我正在学习Go语言,并尝试为一个学校项目创建一两个GUI界面。
我只需要简单的功能,比如将按钮与动作监听器关联起来,一个文本框,以及一个可以根据像素坐标绘制形状或点的面板。
到目前为止,我看到了这篇关于在PNG图像上绘制形状的帖子:https://stackoverflow.com/questions/28992396/draw-a-rectangle-in-golang
但是没有看到如何在GUI上绘制形状并更新它们。
有人可以推荐一个适用于Go语言的好用、简单明了的GUI包吗?
N/A
这个问题不涉及测试输入或输出。
英文:
I am learning GoLang and trying to create a GUI or two for a school project.
I just need simple functionality like buttons attached to action listeners, a textbox, and a panel where I can draw shapes or points based on pixel coordinates.
So far I have seen this post about drawing shapes to PNG images: https://stackoverflow.com/questions/28992396/draw-a-rectangle-in-golang
but not how to draw the shapes on a GUI and update them.
Can anyone recommend a good GUI, straightforward package to use for GoLang?
N/A
this question does not involve tested input or output.
答案1
得分: 2
你可以尝试使用Fyne。
它具有你所需的组件。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论