当前位置: 首页 > 图灵资讯 > 行业资讯> python中TKinter的绑定方法

python中TKinter的绑定方法

来源:图灵python
时间: 2024-06-06 14:51:48

1、bind_all全局绑定,默认是全局快捷键,如F1是帮助文档。

2、bind_class接受三个参数,第一个是类名,第二个是事件,第三个是操作。

3、bind单独绑定一个例子。

4、解绑unbind需要一个参数,即解绑哪个事件。

实例

fromTkinterimport*

root=Tk()
defcallback(event):
print"clickedat",event.x,event.y
frame=Frame(root,width=100,height=100)
frame.bind("<Button-1>",callback)
frame.pack()

root.mainloop()

以上是python中TKinter的绑定方法,希望对大家有所帮助。更多Python学习指导:python基础教程

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