首页 > 编程语言 > 详细

Python3.4 GUI界面教程(菜单栏)

时间:2015-03-27 20:07:15      阅读:647      评论:0      收藏:0      [点我收藏+]
from tkinter import *
def hello():
    print('hello')
def about():
    label = Label(root, text='王小涛_同學\n QQ:*********', fg='red', bg='black')
    label.pack(expand=YES, fill=BOTH)
root = Tk()
menubar = Menu(root)
filemenu = Menu(menubar, tearoff=0)
filemenu.add_command(label='打开', command=hello)
filemenu.add_command(label='保存')
filemenu.add_separator()
filemenu.add_command(label='退出', command=root.quit)
menubar.add_cascade(label='文件', menu=filemenu)
helpmenu = Menu(menubar, tearoff=0)
helpmenu.add_command(label='关于作者', command=about)
menubar.add_cascade(label='关于', menu=helpmenu)
root.config(menu=menubar)
root.geometry('200x400')
root.mainloop()

Python3.4 GUI界面教程(菜单栏)

原文:http://blog.csdn.net/u013511642/article/details/44679561

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!