我想每天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点钟安排通知。如何安排请帮助我。