赞
踩
import tkinter
import tkinter.messagebox
提示消息框
tkinter.messagebox.showinfo(‘提示’,‘识别成功’)
消息警告框
tkinter.messagebox.showwarning(‘警告’,‘注意’)
错误消息框
tkinter.messagebox.showerror(‘错误’,‘出错了’)
对话框
import tkinter
import tkinter.messagebox
def but():
a=tkinter.messagebox.askokcancel('提示', '要执行此操作吗')
print (a)
root=tkinter.Tk()
root.title('GUI')#标题
root.geometry('800x600')#窗体大小
root.resizable(False, False)#固定窗体
tkinter.Button(root, text='hello button',command=but).pack()
root.mainloop()
确定返回 Ture 取消返回 False
messagebox.askquestion
a=tkinter.messagebox.askquestion(‘提示’, ‘要执行此操作吗’)
返回 yes 和 no
messagebox.askretrycancel
a=tkinter.messagebox.askretrycancel(‘提示’, ‘要执行此操作吗’)
返回 Ture 和 False
a=tkinter.messagebox.askyesnocancel(‘提示’, ‘要执行此操作吗’)有三个按钮
是:True 否:False 取消:None
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。