gpt4 book ai didi

Python 原生通知

转载 作者:太空宇宙 更新时间:2023-11-03 18:42:59 25 4
gpt4 key购买 nike

是否可以在 python GUI 中创建通知?

这是我的要求:

  • 应在应用最小化时运行
  • 可以随时调用
  • 函数应采用 2 个参数:标题和通知

最佳答案

方法如下(来 self 很久以前制作的通知程序):

import Tkinter, time, tkMessageBox

top = Tkinter.Tk()
top.withdraw() #to make the main window invisible

def notify(title='Default title', notification='Default notification'):
tkMessageBox.showinfo(title, notification)

notify()
notify('Yo','Did you know this is a notification!')

满足您的所有要求,而且是用标准 python 编写的。

关于Python 原生通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20120463/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com