python图形化界面库_python基础-图形界面库

Python 支持多种图形界面的第三方库:Tk、wxWidgets、Qt、GTK

Python自带的库是支持Tk的Tkinter,使用Tkinter,无需安装任何包,就可以直接使用

内置的Tkinter封装了访问Tk的接口:

Tk是一个图形库,支持多个操作系统,使用Tcl语言开发;

Tk会调用操作系统提供的本地GUI接口,完成最终的GUI。

所以,代码只需要调用Tkinter提供的接口就可以了。

编写Hello World!

from Tkinter import *

#从Frame派生一个Application类,是所有Widget的父容器

classApplication(Frame):def __init__(self, master=None):

Frame.__init__(self, master)

self.pack()

self.createWidgets()

#每个Button、Label、输入框等,都是一个Widget。Frame则是可以容纳其他Widget的Widget,所有的Widget组合起来就是一棵树defcreateWidgets(self):

self.helloLabel= Label(self, text='Hello, world!')

self.helloLabel.pack()#pack()方法把Widget加入到父容器中,并实现布局,grid()可以实现更复杂的布局

self.quitButton = Button(self, text='Quit', command=self.quit) #当Button被点击时,触发self.quit()使程序退出

self.quitButton.pack()#实例化Application,并启动消息循环

app =Application()#设置窗口标题:

app.master.title('Hello World')#主消息循环:

app.mainloop()#GUI程序的主线程负责监听来自操作系统的消息,并依次处理每一条消息。因此,如果消息处理非常耗时,就需要在新线程中处理

运行如图所示:

813166-20151204193913518-347887462.png

输入文本:

from Tkinter import *

importtkMessageBoxclassApplication(Frame):def __init__(self, master=None):

Frame.__init__(self, master)

self.pack()

self.createWidgets()defcreateWidgets(self):

self.nameInput=Entry(self)

self.nameInput.pack()

self.alertButton= Button(self, text='Hello', command=self.hello)

self.alertButton.pack()defhello(self):

name= self.nameInput.get() or 'world'tkMessageBox.showinfo('Message', 'Hello, %s' %name)#点击按钮时,触发hello(),通过self.nameInput.get()获得用户输入的文本后,使用tkMessageBox.showinfo()可以弹出消息对话框。

如图:

813166-20151204195309033-1818540003.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值