python GUI(Tkinter) practices

import Tkinter

class Test:
def __init__(self,master):
frame=Tkinter.Frame(master)
frame.pack()
self.button=Tkinter.Button(frame,text='Quit',fg='red',command=frame.quit)
self.button.pack(side='left')
self.hi_there=Tkinter.Button(frame,text='hello',command=self.say_hi)
self.hi_there.pack(side='left')

def say_hi(self):
print 'hi there, this is a test!'

win=Tkinter.Tk()
Test=Test(win)
win.mainloop()

from Tkinter import *

root=Tk()
def hello():
print 'hello'

menubar=Menu(root)
menubar.add_command(label='hello',command=hello)
menubar.add_command(label='quit',command=root.quit)

root.config(menu=menubar)

mainloop()

from Tkinter import *

root=Tk()

def hello():
print 'hello'

def about():
w=Label(root,text='hello,test')
w.pack(side='top')

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)

filemenu2=Menu(menubar,tearoff=0)
filemenu2.add_command(label='Open',command=hello)
filemenu2.add_command(label='Save',command=hello)
menubar.add_cascade(label='Edit',menu=filemenu2)

filemenu3=Menu(menubar,tearoff=0)
filemenu3.add_command(label='About',command=about)
menubar.add_cascade(label='Help',menu=filemenu3)

root.config(menu=menubar)
mainloop()

reference:
http://www.yiibai.com/python/python_gui_programming.html
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值