python内置对话框:警告对话框,对话框和错误对话框的信息

发布时间:2020-08-18编辑:脚本学堂
本文分享下,python中的内置对话框、警告对话框、对话框和错误对话框消息的演示代码,有需要的朋友,可以参考下这个例子。

python内置对话框、敬告对话框等。
代码:

#!/bin/python
#edit by www.jb200.com

from Tkinter import *
from tkMessageBox import *

def callback():
    if askyesno('Verify', 'Quit?'):
        showwarning('Yes', 'Quit not yet implemented')
    else:
        showinfo('No', 'Quit has been cancelled')

errmsg = 'Error!'
Button(text='Quit', command=callback).pack(fill=X)
Button(text='Spam', command=(lambda: showerror('Spam', errmsg))).pack(fill=X)
mainloop()

效果图,如下:
python内置对话框