Tkinter菜单显示

时间:2018-10-31 14:09:52

标签: python tkinter tkinter-menu

我是使用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()

运行此代码时,我只会看到一个没有菜单的空窗口。
Result of Window

1 个答案:

答案 0 :(得分:1)

在OSX上,菜单栏的显示类似于OSX中所有其他应用程序的显示-沿显示屏顶部。它会显示在窗口顶部。