應該是給一個標簽綁定多個事件監(jiān)聽函數(shù)吧?
成都創(chuàng)新互聯(lián)公司成立與2013年,是專業(yè)互聯(lián)網(wǎng)技術服務公司,擁有項目成都網(wǎng)站制作、成都網(wǎng)站建設網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元平江做網(wǎng)站,已為上家服務,為平江各地企業(yè)和個人服務,聯(lián)系電話:18982081108
addEventListener 可以重復綁定多個
不會有沖突 按照綁定先后的順序去執(zhí)行多個函數(shù)。
讓前面那個事件去觸發(fā)后面的事件不就成了。調(diào) 用后面那個函數(shù)。 所以不需要一個事件下bind很多個函數(shù)。只需要一個母函數(shù),調(diào) 用一組子函數(shù)。
分兩步:定義函數(shù)和調(diào)用函數(shù)。
1.定義函數(shù)用def關鍵字,然后定義函數(shù)名和入?yún)ⅲ约昂瘮?shù)執(zhí)行語句。
2.通過函數(shù)名調(diào)用函數(shù)即可,需要傳入?yún)?shù)的話需要加上參數(shù)值
你好,Button1.bind(sequence='Button-1', func=trans1)的語法應該是Button1.bind'ComboboxSelected', handler),針對不同的選項綁定不同的事件,可以通過event分發(fā)來實現(xiàn),下面是一個例子代碼:
import?tkinter?as?tk
from?tkinter?import?ttk
values?=?['mustang',?'focus',?'tesla']
def?method_mustang():
label.configure(text="mustang?selected")
def?method_focus():
label.configure(text="focus?selected")
def?method_tesla():
label.configure(text="tesla?selected")
def?method_unknown():
label.configure(text="unknown?selected")
def?handler(event):
current?=?combobox.current()
value?=?values[current]
print("current:",?current,?"value:",?value)
func_map?=?{
"mustang":?method_mustang,
"focus":?method_focus,
"tesla":?method_tesla
}
func?=?func_map.get(value,?method_unknown)
func()
root?=?tk.Tk()
combobox?=?ttk.Combobox(root,?values=values)
combobox.bind('ComboboxSelected',?handler)
label?=?ttk.Label(root,?width=20)
combobox.pack(side="top",?anchor="w")
label.pack(side="top",?fill="x",?pady=4)
root.mainloop()