折腾Python中的Tkinter
从oschina看到了关于Python的Tkinter简介:
又从Python官网文档:
Tkinter — Python interface to Tcl/Tk
中,知道了Tkinter是Python内置的。
打算去折腾试试。
1.参考官网的代码,写了下面的:
#!/usr/bin/python # -*- coding: utf-8 -*- """ ------------------------------------------------------------------------------- Function: 【记录】折腾Python中的Tkinter http://www.crifan.com/try_python_tkinter_module Author: Crifan Verison: 2012-11-30 ------------------------------------------------------------------------------- """ 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() def tkinterDemo(): root = Tk() app = Application(master=root) app.mainloop() root.destroy() ############################################################################### if __name__=="__main__": tkinterDemo();
然后去cmd中运行,可以看到有对应的图形界面显示出来了:
然后点击Hello,也可以在cmd中显示出对应的信息:
还是有点意思的。
【总结】
算是内置的图形库,有空可以好好折腾折腾。