Mango 更新的闹钟功能

发布于 2024-11-27 02:15:33 字数 151 浏览 0 评论 0原文

在芒果更新中,可以启动应用程序并设置闹钟,例如第二天早上 09:00。然后关闭应用程序并睡觉。 第二天早上,闹钟应该以应用程序中包含的声音(wav 文件)开始(而不是默认的 wp7 声音)?

我看过文档并发现需要使用 Reminder 类。但我不知道这是否可能......

In the mango update will it be possible to start the app and set an alarm for e.g. 09:00 the next morning. Then close the app and go to sleep.
The next morning the alarm should start with sounds (wav files) contained in the application (and not default wp7 sounds)?

Ive seen at the docs and found out the Reminder class would needed to be used. But I didnt get if this will be possible....

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

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

发布评论

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

评论(1

晨曦÷微暖 2024-12-04 02:15:33

这是从上面评论中 Derik 的参考文献中获取的代码示例,我认为它可以满足您的要求:

string alarmTimeString = DateTime.Now.AddDays(1).ToString("M/dd/yyyy") + " 09:00";
DateTime alarmTime = DateTime.Parse(alarmTimeString);
Reminder reminder = new Reminder("WakeUpTime")
{
    Title = "Time to wake up!",
    Content = "It's time for you to wake up and get to work!",
    BeginTime = alarmTime,
    ExpirationTime = alarmTime.AddHours(1)
};
ScheduledActionService.Add(reminder);

感谢 Derek 为我们指明了正确的方向!

Here's a sample of code taken from Derik's reference in the comment above that will, I think, do what you're looking for:

string alarmTimeString = DateTime.Now.AddDays(1).ToString("M/dd/yyyy") + " 09:00";
DateTime alarmTime = DateTime.Parse(alarmTimeString);
Reminder reminder = new Reminder("WakeUpTime")
{
    Title = "Time to wake up!",
    Content = "It's time for you to wake up and get to work!",
    BeginTime = alarmTime,
    ExpirationTime = alarmTime.AddHours(1)
};
ScheduledActionService.Add(reminder);

Thanks Derek for pointing us in the right direction!

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