我是靠谱客的博主 火星上乌冬面,最近开发中收集的这篇文章主要介绍关于Easygui中Msgbox()函数的改良(超时(Timeout参数)自动关闭弹窗),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

原创不易

主要运用了threading,time和easygui

接下来看代码吧

import time
from threading import Thread
from easygui import buttonbox
def msgbox(msg="(Your message goes here)", title=" ",ok_button="OK",image=None,root=None,run=True,timeout=None):
    result=buttonbox(msg=msg,title=title,choices=[ok_button],image=image,default_choice=ok_button,cancel_choice=ok_button,run=run)
    if run or not(timeout):
        print(1)
        return result
    else:
        def Timer():
            time.sleep(timeout)
            result.stop()
        Thread(target=Timer).start()
msgbox(run=False,timeout=10)

最后

以上就是火星上乌冬面为你收集整理的关于Easygui中Msgbox()函数的改良(超时(Timeout参数)自动关闭弹窗)的全部内容,希望文章能够帮你解决关于Easygui中Msgbox()函数的改良(超时(Timeout参数)自动关闭弹窗)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部