python tkinter 按钮事件
时间: 2023-05-01 22:00:07 浏览: 129
Python的Tkinter点击按钮触发事件的例子
在 Tkinter 中,可以使用 `command` 参数将函数与按钮事件关联。例如,在创建按钮时,可以将一个函数作为 `command` 参数传递,该函数将在按钮被点击时调用。
```python
from tkinter import *
def button_click():
print("Button clicked!")
root = Tk()
button = Button(root, text="Click me", command=button_click)
button.pack()
root.mainloop()
```
这是一个简单的例子,button_click 函数在按钮被按下时调用.
阅读全文