Tk GUI toolkit: A Simple Hello World Program

来源:互联网 发布:做淘宝如何找货源 编辑:程序博客网 时间:2024/05/21 05:58
一个有关利用Python来编写GUI程序的小范例
 
from Tkinter import *

class Application(Frame):
    
def
 say_hi(self):
        
print "hi there, everyone!"


    
def createWidgets(self):
        self.QUIT 
=
 Button(self)
        self.QUIT[
"text"= "QUIT"

        self.QUIT[
"fg"]   = "red"
        self.QUIT[
"command"=  self.quit

        self.QUIT.pack({
"side""left"
})

        self.hi_there 
=
 Button(self)
        self.hi_there[
"text"= "Hello"
,
        self.hi_there[
"command"=
 self.say_hi

        self.hi_there.pack({
"side""left"
})

    
def __init__(self, master=
None):
        Frame.
__init__
(self, master)
        self.pack()
        self.createWidgets()

root 
=
 Tk()
app 
= Application(master=
root)
app.mainloop()
root.destroy()

原创粉丝点击