【发布时间】:2021-11-24 20:39:05
【问题描述】:
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 通知机制?
【问题讨论】:
-
目前 Windows 11 是预览版,如果您有任何问题,请随时通过 Windows 反馈中心发布。
标签: uwp toast windows-11