如何在Windows手机应用程序RT

时间:2016-03-01 13:09:53

标签: windows-phone-8 windows-phone-8.1 schedule localnotification

我想每天10点钟安排本地通知。

DateTime EventDate = new DateTime(2016, 02, 11, 17, 52, 20);
            TimeSpan NotTime = EventDate.Subtract(DateTime.Now);
            DateTime dueTime = DateTime.Now.Add(NotTime);

            ScheduledToastNotification scheduledToast = new ScheduledToastNotification(content, dueTime);
            ToastNotificationManager.CreateToastNotifier().AddToSchedule(scheduledToast);

但发生的事情是在上面的代码中给出了相关的日期和时间。但是我想每天10点钟安排通知。如何安排请帮助我。

1 个答案:

答案 0 :(得分:0)

在这种情况下,

Background task会很有帮助。在后台任务中,您可以使用10:00时钟检查当前时间并执行必要的逻辑。