您只需
state将您按钮的设置
self.x为
normal:
self.x['state'] = 'normal'
要么
self.x.config(state="normal")
另外,正确的代码应为:
self.x = Button(self.dialog, text="Download", state=DISABLED, command=self.download)self.x.pack(side=LEFT)
该方法
pack的
Button(...).pack()回报
None,且将其分配给
self.x。您实际上想要将返回值分配
Button(...)给
self.x,然后在下面的行中使用
self.x.pack()。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)