Windows phone 7前台应用程序的Toast通知

时间:2011-11-29 02:15:00

标签: c# windows-phone-7

快速提问。 我这样做了:

myChannel.ShellToastNotificationReceived += new EventHandler<NotificationEventArgs>(myChannel_ShellToastNotificationReceived);

因此,如果我在应用程序位于前台时收到Toast通知,则应调用myChannel_ShellToastNotificationReceived函数。在那个函数中我有:

void myChannel_ShellToastNotificationReceived(object sender, NotificationEventArgs e)
{
    Dispatcher.BeginInvoke(() =>
    {
       ApplicationTitle.Text = "Toast Notification Message Received";
    });
}

问题是永远不会调用该函数,并且永远不会更改ApplicationTitle。

我做错了吗?

2 个答案:

答案 0 :(得分:1)

我发现了问题......似乎正在发送的吐司xml已经足够格式化,因此手机会从应用程序中接收它,但不会在它内部接收它。 用“hand”编写了xml,并没有使用xmlWriter并且工作。

string toastMessage = "<?xml version=\"1.0\" encoding=\"utf-8\"?>" +
        "<wp:Notification xmlns:wp=\"WPNotification\">" +
           "<wp:Toast>" +
              "<wp:Text1>" + title + "</wp:Text1>" +
              "<wp:Text2>" + message + "</wp:Text2>" +
           "</wp:Toast>" +
        "</wp:Notification>";

答案 1 :(得分:0)

您的频道是否已注册接收通知?