-1

我是使用 Tkinter 的新手,我正在尝试创建菜单,即使我认为我遵循了它,它也不会显示。
我真的不知道缺少什么。

from tkinter import *

root=Tk()
root.wm_title("Tkiner GUI Test")

def hello():
    print("Hello World!")

menubar = Menu(root)

filemenu = Menu(menubar, tearoff=0)
filemenu.add_command(label="Open", command=hello)
filemenu.add_command(label="Save", command=hello)
filemenu.add_separator()
filemenu.add_command(label="Exit", command=root.quit)
menubar.add_cascade(label="File", menu=filemenu)


editmenu = Menu(menubar, tearoff=0)
editmenu.add_command(label="Cut", command=hello)
editmenu.add_command(label="Copy", command=hello)
editmenu.add_command(label="Paste", command=hello)
menubar.add_cascade(label="Edit", menu=editmenu)

helpmenu = Menu(menubar, tearoff=0)
helpmenu.add_command(label="About", command=hello)
menubar.add_cascade(label="Help", menu=helpmenu)

# display the menu
root.config(menu=menubar)

root.mainloop()

当我运行这段代码时,我只看到一个没有菜单的空窗口。
窗口结果

4

1 回答 1

1

在 OSX 上,菜单栏的出现与 OSX 中的所有其他应用程序一样——位于显示屏顶部。它不会出现在窗口顶部。

于 2018-10-31T14:19:07.283 回答