博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python tkinter
阅读量:5032 次
发布时间:2019-06-12

本文共 924 字,大约阅读时间需要 3 分钟。

 

在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

你可能感兴趣的文章
weui button的使用
查看>>
使用TidCookieManager得到cookie
查看>>
faiss学习
查看>>
busybox 初始化
查看>>
sql分组拼接字段
查看>>
mdadm
查看>>
nginx超时问题
查看>>
使用Maven构建多模块项目
查看>>
Vim 常用快捷键
查看>>
lintcode :Count and Say 报数
查看>>
libeXosip2(3) -- SIP messages and call control API
查看>>
PHP-浏览器参数防注入检测函数
查看>>
面试技巧锦集
查看>>
PLSQL日期函数
查看>>
8 个最好的 jQuery 树形 Tree 插件
查看>>
jQuery的ajax跨域实现
查看>>
重温.NET下Assembly的加载过程
查看>>
前端读者 | 前端开发者调试面板vConsole
查看>>
PrimeNumber
查看>>
Array对象的方法实现(1)----Array.prototype.push和Array.prototype.concat(实现常规参数的功能)...
查看>>