Windows Phone 8中的本地Toast通知

时间:2013-06-12 23:15:40

标签: windows-phone-8 notifications toast

我想为Windows Phone开发一个包含“通知”的应用程序。

我的想法:

在01:00 PM,一个Toast通知显示如下:

AppTest: Now, it's 01:00 pm

每天下午1点都会显示吐司通知。

请指导我如何在VB Net中执行此操作。

我试过“闹钟”,但它对我不起作用:

Dim dg As New Alarm
With dg
.Content = ""
.Title = ""
.BeginTime = Date.Now.AddSeconds(10)
End With
ScheduledActionService.Add(dg)

我认为这是Background agent , ShellToast,但我应该如何实现呢?

2 个答案:

答案 0 :(得分:0)

您需要展示的是Toast Notification。我知道它只适用于app在后台运行而不是前台应用程序。

您需要使用 ShellToast

的对象
    ShellToast toast = newShellToast();
    toast.Content = "This is a local toast";
    toast.Title = "MYAPP";
    toast.Show();

有关吐司通知的更多信息,请参阅此处 http://dotnet.dzone.com/articles/shell-notifications-windows

答案 1 :(得分:0)

我们无法将吐司通知显示为本地通知。我们需要使用警报通知。