发布时间:2019-09-21 10:51:46编辑:auto阅读(1462)
#简单的图形界面GUI(Graphical User Interface)
from tkinter import *
import tkinter.messagebox as messagebox
class Application(Frame): #从Frame派生出Application类,它是所有widget的父容器
def __init__(self,master = None):#master即是窗口管理器,用于管理窗口部件,如按钮标签等,顶级窗口master是None,即自己管理自己
Frame.__init__(self,master)
self.pack()#将widget加入到父容器中并实现布局
self.createWidgets()
def createWidgets(self):
self.helloLabel = Label(self,text = 'hi')#创建一个标签显示内容到窗口
self.helloLabel.pack()
self.quitButton = Button(self,text = 'Quit',command = self.quit)#创建一个Quit按钮,实现点击即退出窗口
self.quitButton.pack()
self.input = Entry(self)#创建一个输入框,以输入内容
self.input.pack()
self.nameButton = Button(self,text = 'hello',command = self.hello)#创建一个hello按钮,点击调用hello方法,实现输出
self.nameButton.pack()
def hello(self):
name = self.input.get()#获取输入的内容
messagebox.showinfo('Message','hello,%s' %name)#显示输出
app = Application()
app.master.title("hello")#窗口标题
app.mainloop()#主消息循环
输出:
上一篇: Python之用户输入
下一篇: Python抓取网页内容
47838
46382
37269
34724
29310
25967
24898
19945
19536
18017
5787°
6407°
5922°
5958°
7061°
5906°
5938°
6434°
6401°
7772°