tkinter中command
时间: 2024-06-16 17:00:52 浏览: 169
关于Python Tkinter Button控件command传参问题的解决方式
5星 · 资源好评率100%
在Python中,tkinter是一个标准GUI库,可以用于创建GUI应用程序。Command选项被用于在按下button时调用函数。以下是tkinter中command的用法范例[^1]:
```python
import tkinter as tk
def on_button_click():
print("Button clicked")
root = tk.Tk()
button = tk.Button(root, text="Click me", command=on_button_click)
button.pack()
root.mainloop()
```
在上述的例子中,当button被点击时,on_button_click()函数将会被调用,它将在控制台输出"Button clicked"。
阅读全文