消失的 Python 通知弹出窗口

Python Notification Popup that disappears(消失的 Python 通知弹出窗口)
本文介绍了消失的 Python 通知弹出窗口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法创建一个在一定秒数或数分钟后消失的弹出窗口.我只发现一些人在弹出窗口不应该消失时遇到问题的例子.

Is there a way to create a pop up that disappears after a certain number of seconds or minutes. I only find examples of people having trouble with popups that disappear when they are not supposed to.

我找到了 tkMessage 框,但是当我使用 show info 测试某些内容时,它给了我两个框,您必须单击才能退出.这很让人分心.

I have found tkMessage box but when I test something with show info it is giving me two boxes and you have to click to get out of it. It's quite distracting.

我宁愿有一些消失的东西,例如,python 程序看到一封新电子邮件已经到达,然后创建一个弹出窗口,它有颜色和一些文本,不会分散注意力.说 60 秒后消失.

I'd rather have something that disappears, for example, the python program see's that a new email has arrived in and then creates a pop up, which has colour and some text and not distracting. Disappearing after say 60 seconds.

推荐答案

您可以使用 tkinter 轻松创建一个弹出窗口:

You can easily create a pop-up yourself with tkinter:

import tkinter as tk

root = tk.Tk()
root.title("info")

tk.Label(root, text="This is a pop-up message").pack()

root.after(5000, lambda: root.destroy())     # time in ms

root.mainloop()

这篇关于消失的 Python 通知弹出窗口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)