如何使用tkinter链接软件包的退出菜单按钮?

时间:2019-06-18 11:09:03

标签: python-3.x tkinter package

我正在尝试从模块软件包的菜单链接中设置退出按钮:

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”

有人可以帮我理解吗?

0 个答案:

没有答案