3

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

我的想法:

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

AppTest:现在是下午 01:00

每天下午 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但我应该如何实施呢?

4

2 回答 2

0

我们不能将 toast 通知显示为本地通知。我们需要为此使用警报通知。

于 2014-04-18T11:54:24.723 回答
0

您需要显示的是 Toast Notification。我知道它仅在您的应用程序在后台运行而不是作为前台应用程序运行时才有效。

您需要使用ShellToast类的对象

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

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

于 2013-06-18T05:36:04.080 回答