UWP Toast 消息未出现在 Windows 11 中
Posted
技术标签:
【中文标题】UWP Toast 消息未出现在 Windows 11 中【英文标题】:UWP Toast Message not apearing in Windows 11 【发布时间】: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 反馈中心发布。 【参考方案1】:我遇到了同样的问题。
Windows 11 似乎默认启用了 Focus Assist。要禁用或配置它,只需在 Windows 设置中查找“Focus Assist”即可。
【讨论】:
【参考方案2】:似乎在最新的 Windows 11 中问题已修复
【讨论】:
以上是关于UWP Toast 消息未出现在 Windows 11 中的主要内容,如果未能解决你的问题,请参考以下文章
Toast 通知在 Xamarin UWP Windows 应用程序中不起作用