python 弹出式对话框

2025-01-20 23:48:43
推荐回答(1个)
回答1:

不知道你用的什么版本,我修改了一下,测试通过(python2.7):

# coding=utf-8
import Tkinter
import tkMessageBox

def show():
    tkMessageBox.showinfo(title='aaa', message='bbb')

def creatfram():
    root = Tkinter.Tk()
    b = Tkinter.Button(root, text="关于", command=show)
    b.pack()
    root.mainloop()

creatfram()
如果解决了您的问题请采纳!

如果未解决请继续追问