1

wp7 の通知で 2 番目のタイルを処理できますか? 最初しかできない。

私に提案するアイデアはありますか?

確かに、アプリケーション内の生の通知を使用して管理が可能であり、タイルを処理しますが、更新するにはアプリケーションに入る必要があります。

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>

thx tomasmcギネス

于 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にこれらの3つの要素を入力すると、バックタイルが更新されます。

于 2012-04-11T10:29:41.673 に答える