gpt4 book ai didi

c# - 如何使用 WinUI 3 添加桌面通知?

转载 作者:行者123 更新时间:2023-12-05 02:27:19 25 4
gpt4 key购买 nike

WinUI 3 有添加桌面通知的功能吗?

参见引用资料(见下文)

Desktop Notification

最佳答案

使用内置 AppNotification类:

// using Microsoft.Windows.AppNotifications;

public static bool SendNotificationToast(string title, string message)
{
var xmlPayload = new string($@"
<toast>
<visual>
<binding template=""ToastGeneric"">
<text>{title}</text>
<text>{message}</text>
</binding>
</visual>
</toast>");

var toast = new AppNotification(xmlPayload);
AppNotificationManager.Default.Show(toast);
return toast.Id != 0;
}

关于c# - 如何使用 WinUI 3 添加桌面通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73321709/

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