1

I can handle the second tile with a notification of wp7? I can only do it on first.

Do you have any idea to offer me?

Surely management is possible using the raw notifications within the application and will handle me the tile, but are still forced to enter into the application to update.

4

2 回答 2

1

通过帮助,这是我必须格式化 xml 以发送通知的方式,我错过了标签 ID

<?xml version="1.0" encoding="utf-8"?>
 <wp:Notification xmlns:wp=WPNotification>
  <wp:Tile ID="Navigation URI of the tile to update">
   <wp:BackgroundImage><string></wp:BackgroundImage>
   <wp:Count><string></wp:Count>
   <wp:Title><string></wp:Title>
   <wp:BackBackgroundImage><string></wp:BackBackgroundImage>
   <wp:BackTitle><string></wp:BackTitle>
   <wp:BackContent><string></wp:BackContent>
  </wp:Tile>
 </wp:Notification>

谢谢托马斯麦吉尼斯

于 2012-04-12T10:31:56.417 回答
-1

MSDN 文档涵盖辅助磁贴

http://msdn.microsoft.com/en-us/library/hh202945(v=vs.92).aspx

这些参数是您用来更新辅助磁贴的参数:

<wp:BackBackgroundImage>
<wp:BackTitle>
<wp:BackContent>

在您的推送 XML 中填充这三个元素,这将更新背面图块。

于 2012-04-11T10:29:41.673 回答