python的tkinter使用

__author__ = 'Python'

import tkinter as tk

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

    def createWidgets(self):
        #self.hi_there = tk.Button(self)
        # .hi_there configure -text Hello World\n(click me) -command say_hi
        #self.hi_there["text"] = "Hello World\n(click me)"
        #self.hi_there["command"] = self.say_hi
        self.hi_there = tk.Button(self, text="Hello World\n(click me)", command=self.say_hi)
        self.hi_there.pack(side="left")
        self.QUIT = tk.Button(self, text="QUIT", fg="red", bg="blue", command=root.destroy)
        self.QUIT.pack(side="bottom")

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

root = tk.Tk()

# create the application
app = Application(master=root)

# start the program
app.mainloop()

Tkinter可以用來製作GUI,它屬於Python的標準GUI庫。


輸出:

wKiom1cS1U3hW8W8AAAXEFBCBe8124.png

當點擊按鈕Hello World(click me)時,會打印出“hi there, everyone !"。點擊按鈕QUIT則退出。


參考:

Python 3.5.1文檔,Python 標準庫,圖形用戶接口

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章