仅在添加新提醒时才会执行提醒

时间:2011-12-21 22:43:38

标签: windows-phone-7

我正在尝试使用提醒api但没有运气。我用来创建提醒的代码位于下方。发生的事情是,在我添加另一个提醒之前不会触发提醒,此时此旧提醒会立即生效。我想这段代码并没有多说,因为它几乎是从微软的提醒教程中复制粘贴的。但是我不知道问题可能在哪里(如果你有问题所在的建议,我会发布其他代码片段)

Reminder notification = new Reminder(""+uniqueId);
            notification.Title = "Title";
            notification.Content = "Content";
            notification.BeginTime = DateTime.Now.AddSeconds(10);
            notification.RecurrenceType = RecurrenceInterval.None;
            notification.NavigationUri = new Uri("/MyPage.xaml?id=" + uniqueId, UriKind.Relative);

            // Register the reminder with the system.
            ScheduledActionService.Add(notification);

1 个答案:

答案 0 :(得分:0)

好的,代码没有问题。仿真器系统时间设置为自动,但不知何故错误20分钟导致奇怪的行为。手动设置时间后,它按预期工作。