您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“怎么解決Tkinter中button按鈕未按卻主動執行command函數”,內容詳細,步驟清晰,細節處理妥當,希望這篇“怎么解決Tkinter中button按鈕未按卻主動執行command函數”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
在使用Tkinter做界面時,遇到這樣一個問題:
程序剛運行,尚未按下按鈕,但按鈕的響應函數卻已經運行了
from Tkinter import *
class App:
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.click_button(1)).grid(row=0,column=2)
Button(frame,text='4', command = self.click_button(2)).grid(row=1,column=0)
Button(frame,text='5', command = self.click_button(1)).grid(row=1,column=1)
Button(frame,text='6', command = self.click_button(2)).grid(row=1,column=2)
def click_button(self,n):
print 'you clicked :',n
root=Tk()
app=App(root)
root.mainloop()
六個按鈕都沒有按下,但是command函數卻已經運行了
后來通過網上查找,發現問題原因是command函數帶有參數造成的
tkinter要求由按鈕(或者其它的插件)觸發的控制器函數不能含有參數
若要給函數傳遞參數,需要在函數前添加lambda。
from Tkinter import *
class App:
def __init__(self,master):
frame = Frame(master)
frame.pack()
Button(frame,text='1', command = lambda: self.click_button(1)).grid(row=0,column=0)
Button(frame,text='2', command = lambda: self.click_button(2)).grid(row=0,column=1)
Button(frame,text='3', command = lambda: self.click_button(1)).grid(row=0,column=2)
Button(frame,text='4', command = lambda: self.click_button(2)).grid(row=1,column=0)
Button(frame,text='5', command = lambda: self.click_button(1)).grid(row=1,column=1)
Button(frame,text='6', command = lambda: self.click_button(2)).grid(row=1,column=2)
def click_button(self,n):
print 'you clicked :',n
root=Tk()
app=App(root)
root.mainloop()
補充:Tkinter Button按鈕組件調用一個傳入參數的函數
這里我們要使用python的lambda函數,lambda是創建一個匿名函數,冒號前是傳入參數,后面是一個處理傳入參數的單行表達式。
調用lambda函數返回表達式的結果。
def fun(x):
print x
隨后讓我們創建一個Button:(這里省略了調用Tkinter的一系列代碼,只寫重要部分)
Button(root, text='Button', command=lambda :fun(x))
x = 1
最后點擊這個Button,就會打印出 1了。
讀到這里,這篇“怎么解決Tkinter中button按鈕未按卻主動執行command函數”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。