- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 创建应用程序预定 Toast 通知 .我想增加通知的显示时间。如何设置显示通知的时间。还有其他选择吗?
最佳答案
根据documentation您可以使用 duration
Toast 通知 XML 的属性,以便为 short
显示它(7s) 或 long
(25s) 时间:
<toast duration="long">
<visual ... />
</toast>
This attribute was introduced back in Windows 8 time-frame for specifying how long the toast notification stays on the screen – setting the value to “short” will make the notification display for ~7 seconds and setting it to “long” will make the notification display for ~25 seconds.
In Windows 10, developers have the following options to keep the notification on screen for longer than standard length (~7 seconds):
Specifying scenario attribute (see description below) to “alarm” or “reminder” to persist the notification on screen until the user dismisses it.
Specify duration attribute to “long” while making sure the scenario attribute is specified to “default” or unspecified. This will result in the legacy behavior of notification showing on screen for ~25 seconds.
We do not recommend using this property unless you have a good reason to keep the notification up for ~25 seconds on screen. This attribute exists mainly for appCompat reason.
reminder
通知以使其保持可见,直到用户与以下人员交互:
<toast scenario="reminder">
<visual ... />
</toast>
Do not use this just for keeping your notification persistent on screen.
关于c# - 如何增加uwp中toastNotification的显示时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40798377/
我用 C#(使用 Visual Studio Community 2015)创建了一个 WpfApplication,我想发送一些 Windows 10 通知。我认为我应该使用“ToastConten
我有一个在 Windows 10 中运行的桌面应用程序,它创建的 ToastNotifications 也存储在操作中心中。我注意到,当我重新启动计算机时,通知仍然存在于操作中心,所以我想在不再需要它
我在我的 Package.appxmanifest 中保留了 ToastCapable="true"即使它不显示 toast 通知示例应用程序可以从这里下载 https://docs.google.c
当我执行带有 toastnotification 的 python exe 时,显示未找到 win10toast 分发 from win10toast import ToastNotifier toa
我正在尝试验证我的应用程序,但出现以下错误:发现错误:支持的 API 测试检测到以下错误: This API is not supported for this application type -
当用户单击 Toast 通知时,我尝试使用方法 LaunchUriAsync 打开具有特定 URL 的浏览器。 问题是应用程序抛出 System.InvalidOperationException:
我是一名优秀的程序员,十分优秀!