Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 fyne。我正在开发一款游戏(显然带有按钮)。我想知道是否有办法改变按钮的背景?我知道有带有图像而不是文本的按钮,但我只想更改按钮的背景颜色。
Fyne 小部件 API 基于含义而不是图形,这有两个可能的答案。您可以将按钮标记为高重要性 ( Button.Importance = widget.HighImportance),该按钮将显示为原色。
Button.Importance = widget.HighImportance
如果您的应用程序希望控制颜色,那么您的方法是在按钮下方放置一个背景矩形,它将显示出来(例如container.NewMax(canvas.NewRectangle(bgColor), button))。
container.NewMax(canvas.NewRectangle(bgColor), button)