我正在尝试创建一个简单的文本编辑器,并且添加了一些简单的菜单功能。 当我用Tkinter创建菜单时,似乎有一个默认选项可以在新窗口中打开菜单。
出现的选项:
窗口的外观:
有人知道有什么方法可以删除它吗,我正在使用Python 3。
这可能是问题所在:
#Menu options
menu = Menu(root)
root.config(menu=menu)
fileMenu = Menu(menu)
menu.add_cascade(label="File", menu=fileMenu)
fileMenu.add_command(label="New", command=newFile)
fileMenu.add_command(label="Open", command=openFile)
fileMenu.add_command(label="Save", command=saveFile)
fileMenu.add_command(label="Find", command=findInFile)
fileMenu.add_command(label="Print")
fileMenu.add_separator()
fileMenu.add_command(label="Exit", command=exitRoot)
helpMenu = Menu(menu)
menu.add_cascade(label="Help")
menu.add_cascade(label="About", command=about)
textArea.pack()
完整代码可在here
中找到