當前位置:成語大全網 - 新華字典 - python 可以開發出ui嗎?

python 可以開發出ui嗎?

當然可以,最簡單的方式是使用自帶的Tkinter庫。

這裏是壹個例子,自己把它敲進去試壹下。

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()