gpt4 book ai didi

python - 如何使用通知上有按钮的python发送Windows 10通知

转载 作者:行者123 更新时间:2023-12-03 11:10:07 24 4
gpt4 key购买 nike

如何使用 python 发送支持按钮的通知,并留在操作/通知中心?
我正在尝试制作一个提醒我做事的应用程序,通知将有一个完整的和一个贪睡按钮。我尝试使用 win10toast 包,但通知没有留在操作中心,并且不支持在其上放置按钮。
通知应类似于以下内容:

enter image description here


谢谢!

最佳答案

也许为时已晚,但此代码应显示带有按钮的示例通知:

import winrt.windows.ui.notifications as notifications
import winrt.windows.data.xml.dom as dom

app = '{1AC14E77-02E7-4E5D-B744-2EB1AE5198B7}\\WindowsPowerShell\\v1.0\\powershell.exe'

#create notifier
nManager = notifications.ToastNotificationManager
notifier = nManager.create_toast_notifier(app)

#define your notification as string
tString = """
<toast>
<visual>
<binding template='ToastGeneric'>
<text>Sample toast</text>
<text>Sample content</text>
</binding>
</visual>
<actions>
<action
content="Delete"
arguments="action=delete"/>
<action
content="Dismiss"
arguments="action=dismiss"/>
</actions>
</toast>
"""

#convert notification to an XmlDocument
xDoc = dom.XmlDocument()
xDoc.load_xml(tString)

#display notification
notifier.show(notifications.ToastNotification(xDoc))

关于python - 如何使用通知上有按钮的python发送Windows 10通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64230231/

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