Windows Phone 7.1 SDK 警报

发布于 2024-11-19 22:15:13 字数 296 浏览 0 评论 0原文

我正在尝试使用 Windows Phone 7.1 SDK 中的新 Alarm 类创建一个闹钟,

我可以让它工作,但闹钟在我设置的时间似乎没有响起。

Alarm alarm = new Alarm("MyAlarm")
        {
            Content = "Alarm!",
            BeginTime = DateTime.Now.AddSeconds(seconds),
        };
ScheduledActionService.Add(alarm);

I'm trying to create an alarm using the new Alarm class in the Windows Phone 7.1 SDK

I'm able to get it to work but the alarm doesn't seem to be going off at the time i've set.

Alarm alarm = new Alarm("MyAlarm")
        {
            Content = "Alarm!",
            BeginTime = DateTime.Now.AddSeconds(seconds),
        };
ScheduledActionService.Add(alarm);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瞄了个咪的 2024-11-26 22:15:13

中的注释MSDN 说

在开始时间之前不会调用该操作
已达到。

(强调我的)

不能保证警报在指定的确切秒被调用。我预计警报有可能在指定时间之后几秒钟内触发,但不会在此之前触发。

The remarks in MSDN say

The action will not be invoked before the begin time has been
reached.

(emphasis mine)

There is no guarantee on the alarm being called at the exact second specified. I would expect there to be the possibility of the alarm being triggered up to a few seconds after the specified time, but not before.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文