当我想要时,警报不会运行

时间:2014-01-31 11:54:47

标签: c# windows-phone

我的Windows手机闹钟有问题,我必须在倒计时结束时向用户显示通知。

我正在尝试使用标准闹钟(Microsoft.Phone.Scheduler.Alarm),但它只是不能与我合作

这里是代码

using Microsoft.Phone.Scheduler;

///////////////////////

Alarm notifica = new Alarm("notifica");
notifica.ExpirationTime = DateTime.Now.AddMinutes(5);
notifica.RecurrenceType = RecurrenceInterval.None;
notifica.BeginTime = DateTime.Now.Add(tempo);

if (ScheduledActionService.Find("notifica") != null) ScheduledActionService.Remove("notifica");
ScheduledActionService.Add(notifica);

“tempo”是在触发警报之前必须等待的时间(类TimeSpan)

警报不起作用或使用ScheduledActionService发送错误(我不能给他一个过去的时间)

这里有什么问题? 谢谢

0 个答案:

没有答案