程式如下:
import tkinter as tk
window = tk.Tk()
window.title("我的程序")
window.geometry('400x300')
var = tk.StringVar()
lable = tk.Label(window,textvariable = var,font = (('微软雅黑'),12))
lable.pack()
on_hit = True
def run():
global on_hit
if on_hit == True:
on_hit = False
var.set('you hit me')
else:
on_hit = True
var.set('')
button = tk.Button(window,text = 'hit',font = (('微软雅黑'),12),command = run)
button.pack()
window.mainloop()
這個程式的效果是有一個按鈕,按一下,就出現you hit me 再按一下就消失,如此循環
為什麼button寫成button = tk.Button(window,text = '生成題目和答案' ,font = (('微軟雅黑'),12),command = run()),函數呼叫時加了括號,再按按鈕,就一直是you hit me ,上面的lable裡的內容不再改變了?
這句,只是將run這個函數本身讓button儲存下來,在button被點擊後會自動呼叫(相當於點擊後才執行
run()
)。如果改成
解釋器會在看到這句話的時候立即調用一次
run()
,然後把調用的回傳值讓button保存下來,現在button被點擊後調用的就是這個回傳值(這個例子下就是None )。command有兩種方式呼叫:
b = Button(... command = button)
b = Button(... command = lambda: button('hey'))
你想要用()調用的話可以用lambda寫:
button = tk.Button(window,text = '生成題目和答案',font = (('微軟雅黑'),12),command =lambda: run())