6.18 消息框、弹窗:pymsgbox.alert
作用:
显示带有文本和单个OK按钮的简单消息框。返回所单击按钮的文本。参数:
text = “”, 消息框标题
title = “”, 消息框内容
button = pymsgbox.OK_TEXT, 消息框自带的按钮,默认为:OK
root = None,
timeout = None,
icon = NO_ICON,
_tkinter = False,说明:
一般情况下,在Python3中,调用的是ctypes.windll.user32.MessageBoxW来进行绘制消息框。当(_tkinter) or (timeout is not None) or (button != pymsgbox.OK_TEXT)时,调用的是tkinter这个库来进行绘制消息框。示例:
import pymsgbox
result = pymsgbox.alert(text='内容', title='标题')
print(result)
文章来源:https://www.toymoban.com/news/detail-718090.html
OK文章来源地址https://www.toymoban.com/news/detail-718090.html
到了这里,关于[Python进阶] 消息框、弹窗:pymsgbox.alert的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!