1. 程式人生 > >Python中圖形介面

Python中圖形介面

from tkinter import *
class Application(Frame):

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

    def createWidgets(self):
        self.helloLable = Label(self,text = 'hello,world')
        self.helloLable.pack()
        self.quitButton = Button(self,text = 'Quit',command = self.quit)
        self.quitButton.pack()

app = Application()
app.master.title('Hello World')
app.mainloop()



from tkinter import *
import tkinter.messagebox as messagebox

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

    def createWidgets(self):
        self.nameInput = Entry(self)
        self.nameInput.pack()
        self.alertButton = Button(self, text='Hello', command=self.hello)
        self.alertButton.pack()

    def hello(self):
        name = self.nameInput.get() or 'world'
        messagebox.showinfo('Message', 'Hello, %s' % name)

app = Application()
# 設定視窗標題:
app.master.title('Hello World')
# 主訊息迴圈:
app.mainloop()