我无法解决这个问题的代码,我想知道你们是否有人这样做。我想将tkinter菜单中的一个按钮分配给另一段Python代码中的已定义函数(或者有一些链接方式)。我尝试了很多不同的网站,但我找不到它。
我尝试过的网站:
- https://docs.python.org/3/library/tkinter.ttk.html
-www.tutorialspoint.com/python/tk_button.htm
答案 0 :(得分:1)
This是我在google中获得的第一个结果:
from Tkinter import *
master = Tk()
def callback():
print "click!"
b = Button(master, text="OK", command=callback)
b.pack()
mainloop()
如您所见,command
用于指定在用户单击按钮时运行的回调函数。