WinUI 3是否具有添加桌面通知的功能?参见参考文件(见下文)
sulc1iza1#
使用内置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; }
34gzjxbg2#
参考编号:Microsoft Docs
2条答案
按热度按时间sulc1iza1#
使用内置AppNotification类:
34gzjxbg2#
参考编号:
Microsoft Docs