tkinter button传递参数
时间: 2023-06-05 18:47:51 浏览: 433
关于Python Tkinter Button控件command传参问题的解决方式
5星 · 资源好评率100%
tkinter 中的 button 可以通过在创建 button 时传递参数来实现。例如,可以使用 command 参数指定 button 点击时调用的函数,并在函数中使用额外的参数。
示例:
```
def my_function(arg1, arg2):
print(arg1, arg2)
button = tk.Button(root, text="Click me", command=lambda: my_function("Hello", "world"))
button.pack()
```
在上面的示例中,当 button 被点击时,会调用 my_function 函数,并传递 "Hello" 和 "world" 两个参数。
阅读全文