2021
07-09
07-09
解决Tkinter中button按钮未按却主动执行command函数的问题
在使用Tkinter做界面时,遇到这样一个问题:程序刚运行,尚未按下按钮,但按钮的响应函数却已经运行了例如下面的程序:fromTkinterimport*classApp:def__init__(self,master):frame=Frame(master)frame.pack()Button(frame,text='1',command=self.click_button(1)).grid(row=0,column=0)Button(frame,text='2',command=self.click_button(2)).grid(row=0,column=1)Button(frame,text='3',command=self....
继续阅读 >