这是Allen Downey的Think Python的练习19.3。
该代码假设是获取条目小部件的颜色并更改圆的背景颜色。我不知道为什么在单击按钮后代码返回错误Tclerror: unknown option "-fill"
。奇怪的是,这本书本身提供了完全相同的解决方案。 Python的配置有问题吗?不知道。请帮忙。
from swampy.Gui import *
g = Gui()
g.title = ('Gui')
canvas = g.ca(width=500, height=500)
canvas.config(bg='white')
circle = None
def make_circle():
global circle
circle = canvas.circle([0,0], 100, fill='red')
def change_color():
if circle == None:
return
my_color = entry.get()
my_circle.config(fill=my_color)
my_circle = g.bu(text='Make circle', command = make_circle)
entry = g.en(text='Any text', bg = 'blue')
g.bu(text='Change color', command = change_color)
g.mainloop()