python教程

python TKinter的消息传递机制

python教程 51源码 2022-11-29 人阅读

1、自动发送事件/消息。

2、系统负责将消息发送到队列。

3、绑定/设置相关组件。

4、后端自动选择感兴趣的事件并做出相应的反应。

5、消息格式<[modifier-]---type-[-detail]>。

实例

# 事件的简单例子
import tkinter
 
def baseLabel(event):
    global baseFrame
    print("被点击")
    lb = tkinter.Label(baseFrame, text="谢谢点击")
    lb.pack()
 
# 画出程序的总框架
baseFrame = tkinter.Tk()
 
lb = tkinter.Label(baseFrame, text="模拟按钮")
# Label绑定相应的消息和处理函数
# 自动获取左键点击,并启动相应的处理函数baseLabel
lb.bind("<Button-1>", baseLabel)
lb.pack()
 
 
# 启动消息循环
# 至此,表示程序开始执行
baseFrame.mainloop()

以上就是python TKinter的消息传递机制,希望对大家有所帮助。更多Python学习指路:python基础教程

(推荐操作系统:windows7系统、Python 3.9.1,DELL G3电脑。)

版权声明:文章搜集于网络,如有侵权请联系本站,转载请说明出处:https://www.51yma.cn/jiaocheng/python/808.html
文章来源:Python学习网-https://www.py.cn//jishu/jichu/34266.html
标签 python TKinter