清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
#!/usr/bin/env python
from Tkinter import *
from tkMessageBox import showinfo
def reply( ):
showinfo(title='popup', message='Button pressed!')
window = Tk( )
button = Button(window, text='press', command=reply)
button.pack( )
window.mainloop( )