当前位置:   article > 正文

Python tkinter

howinfo(title=none, message=none, **options):

 

在python3.4中,原来的tkMessageBox变成tkinter.messagebox,使用方式如下:

import tkinter.messagebox
tkinter.messagebox.askokcancel('提示','登录成功!')




tkinter.messagebox中有如下函数:

askokcancel(title=None, message=None, **options)

Ask if operation should proceed; return true if the answer is ok

askquestion(title=None, message=None, **options)

Ask a question

askretrycancel(title=None, message=None, **options)

Ask if operation should be retried; return true if the answer is yes

askyesno(title=None, message=None, **options)

Ask a question; return true if the answer is yes

askyesnocancel(title=None, message=None, **options)

Ask a question; return true if the answer is yes, None if cancelled.

showerror(title=None, message=None, **options)

Show an error message

showinfo(title=None, message=None, **options)

Show an info message

showwarning(title=None, message=None, **options)

Show a warning message

转载于:https://www.cnblogs.com/ficow/p/5674536.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/124870
推荐阅读
相关标签
  

闽ICP备14008679号