02_python_练习题——图形界面

python也是可以做出来类似对话框的内容的

下面的小程序就能显示一个小小的对话框

受这个例子的启发,是不是能够继续扩张,自己做一个记事本之类的东西




# _*_ coding:utf-8 _*_

from Tkinter import *
import tkMessageBox

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

    def createWidgets(self):
        self.nameInput = Entry(self)
        self.nameInput.pack()
        self.alertButton = Button(self, text='click', command=self.hello)
        self.alertButton.pack()

    def hello(self):
        name = self.nameInput.get() or 'world'
        tkMessageBox.showinfo('Message', 'Hello, %s' % name)

app = Application()
# 设置窗口标题:
app.master.title('Hello World')
# 主消息循环:
app.mainloop()


你可能感兴趣的:(python练习题,python开发技巧)