我正在尝试从模块软件包的菜单链接中设置退出按钮:
main.py:
import tkinter as tk
from tkinter import Menu
win = tk.Tk()
win.title("Python GUI")
from lib.function_def import stop
menuBar = Menu(win)
win.config(menu=menuBar)
fileMenu.add_command(label="Exit", command= stop(win))
menuBar.add_cascade(label="File", menu=fileMenu)
win.mainloop() # 5 Start GUI
lib文件夹中的function_def.py(我在其中添加了 init .py):
def stop(var): # 7
var.quit()
var.destroy()
我得到了错误消息:TclError:无效的命令名称“。!menu。!menu”
有人可以帮我理解吗?