python添加页面下拉菜单

#FuncsMenu1.py(添加下拉菜单)

from tkinter import *

def hello():
    print('你干嘛~哎呦')

root=Tk()
m=Menu(root)
for item in ['文件','编辑','视图']:
    m.add_command(label=item,command=hello)
root['menu']=m
            
m1=Menu(root)
filemenu=Menu(m1)
editmenu=Menu(m1)
viewmenu=Menu(m1)
for item in ['打开','保存','退出']:
    filemenu.add_command(label=item,command=hello)
for item in ['复制','剪切','粘贴']:
    editmenu.add_command(label=item,command=hello)
for item in ['代码','拆分','设计']:
    viewmenu.add_command(label=item,command=hello)
m1.add_cascade(label='文件',menu=filemenu)
m1.add_cascade(label='编辑',menu=editmenu)
m1.add_cascade(label='视图',menu=viewmenu)
root['menu']=m1


root.mainloop()

python添加页面下拉菜单_第1张图片

 下拉菜单

你可能感兴趣的:(python,开发语言,ide)