pythonTKinter的消息傳遞機制
1、自動發(fā)送事件/消息。
2、系統(tǒng)負責將消息發(fā)送到隊列。
3、綁定/設置相關組件。
4、后端自動選擇感興趣的事件并做出相應的反應。
5、消息格式<[modifier-]---type-[-detail]>。
實例
#事件的簡單例子
importtkinter
defbaseLabel(event):
globalbaseFrame
print("被點擊")
lb=tkinter.Label(baseFrame,text="謝謝點擊")
lb.pack()
#畫出程序的總框架
baseFrame=tkinter.Tk()
lb=tkinter.Label(baseFrame,text="模擬按鈕")
#Label綁定相應的消息和處理函數(shù)
#自動獲取左鍵點擊,并啟動相應的處理函數(shù)baseLabel
lb.bind("",baseLabel)
lb.pack()
#啟動消息循環(huán)
#至此,表示程序開始執(zhí)行
baseFrame.mainloop()
以上內容為大家介紹了python培訓之TKinter的消息傳遞機制,希望對大家有所幫助,如果想要了解更多Python相關知識,請關注IT培訓機構:千鋒教育。