我一直收到以下错误: AttributeError:'NoneType'对象没有属性'configure'
# create color button
self.button = Button(self,
text = "Click Me",
command = self.color_change,
bg = "blue"
).grid(row = 2, column = 2, sticky = W)
def color_change(self):
"""Changes the button's color"""
self.button.configure(bg = "red")
答案 0 :(得分:16)
执行self.button = Button(...).grid(...)
时,self.button
命令的结果是grid()
命令的结果,不是对Button
的引用对象创建。
您需要在打包/编制之前指定self.button
变量。
看起来应该是这样的:
self.button = Button(self,text="Click Me",command=self.color_change,bg="blue")
self.button.grid(row = 2, column = 2, sticky = W)
答案 1 :(得分:1)
另一种更改按钮颜色的方法,如果您希望同时进行多种操作和颜色更改。使用Tk().after
方法并绑定更改方法可以使您更改颜色并执行其他操作。
Label.destroy
是after方法的另一个示例。
def export_win():
//Some Operation
orig_color = export_finding_graph.cget("background")
export_finding_graph.configure(background = "green")
tt = "Exported"
label = Label(tab1_closed_observations, text=tt, font=("Helvetica", 12))
label.grid(row=0,column=0,padx=10,pady=5,columnspan=3)
def change(orig_color):
export_finding_graph.configure(background = orig_color)
tab1_closed_observations.after(1000, lambda: change(orig_color))
tab1_closed_observations.after(500, label.destroy)
export_finding_graph = Button(tab1_closed_observations, text='Export', command=export_win)
export_finding_graph.grid(row=6,column=4,padx=70,pady=20,sticky='we',columnspan=3)
您还可以还原为原始颜色。