tkinter 监听
时间: 2023-07-13 21:08:34 浏览: 127
tkinter教程
在 tkinter 中,可以使用 `bind` 方法来为组件绑定事件,例如:
```python
from tkinter import *
def on_button_click(event):
print("Button clicked")
root = Tk()
button = Button(root, text="Click me")
button.pack()
button.bind("<Button-1>", on_button_click)
root.mainloop()
```
在上面的代码中,我们为按钮组件绑定了 `<Button-1>` 事件,即鼠标左键点击事件。当用户点击按钮时,程序会自动调用 `on_button_click` 函数并输出 "Button clicked"。你可以根据需要,为其他事件(例如键盘按键事件、鼠标移动事件等)绑定相应的函数,来实现更加丰富的交互体验。
阅读全文