from tkinter import *
root=Tk()
def hello():
print("选择了菜单")
root.geometry("300x400")
menu1=Menu(root,tearoff=0)
menu1.add_command(label="显示",command=hello)
menu1.add_command(label="退出",command=root.quit)
frame=Frame(root,width=512,height=512)
frame.pack()
def a(m):
menu1.post(m.x_root,m.y_root)
frame.bind("
root.config(menu=menu1)
root.mainloop()