UWP Toast 通知未在 Windows 11 Beta 中显示(出现在前面)
但同样的事情也在 Windows 10 上运行
示例代码:
var toastNotifier = ToastNotificationManager.CreateToastNotifier();
ToastContent content = new ToastContentBuilder()
.AddText(message)
.AddAppLogoOverride(new Uri(this.LogoUri))
.GetToastContent();
// Create the notification
ToastNotification toast = new ToastNotification(content.GetXml());
toast.ExpirationTime = DateTime.Now.AddSeconds(this.ToastDisplayTime);
toastNotifier.Show(toast);
Windows 11 中是否更新了 Toast 通知机制?