如何在Python中显示系统通知



用Python显示系统通知的最佳方式是什么,最好使用tkinter进行跨平台实现(我在OS X上,所以我也对允许与Notification Center集成的实现持开放态度)?

我想展示一个自我毁灭的信息,我的意思是,它会在屏幕上停留几秒钟,然后消失,但不会干扰用户交互。我不想使用消息框,因为in要求用户单击按钮以关闭消息窗口。

你推荐什么?

这对我很有用。它将消息显示为弹出窗口,并在2秒钟后退出。

from tkinter import *
from sys import exit
def popupError(s):
    popupRoot = Tk()
    popupRoot.after(2000, exit)
    popupButton = Button(popupRoot, text = s, font = ("Verdana", 12), bg = "yellow", command = exit)
    popupButton.pack()
    popupRoot.geometry('400x50+700+500')
    popupRoot.mainloop()

相关内容

  • 没有找到相关文章

最新更新