你不能。使用顶级widgted(tkinter.Toplevel())和标签编写自己的消息框!
这样的东西(来自http://effbot.org/tkinterbook/label.htm)
from Tkinter import *master = Tk()w = Label(master, text="Hello, world!")w.pack()mainloop()
希望对您有所帮助!
欢迎分享,转载请注明来源:内存溢出
你不能。使用顶级widgted(tkinter.Toplevel())和标签编写自己的消息框!
这样的东西(来自http://effbot.org/tkinterbook/label.htm)
from Tkinter import *master = Tk()w = Label(master, text="Hello, world!")w.pack()mainloop()
希望对您有所帮助!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)