2012-04-10 56 views
1

我可以使用wp7的通知來處理第二個圖塊? 我只能先做。推送通知第二個圖塊

你有什麼想法給我嗎?

當然,管理是可以使用應用程序內的原始通知,並將處理我的瓷磚,但仍然被迫進入應用程序更新。

+1

你的意思是使用一個推送通知,你不能更新輔助瓷磚? – tomasmcguinness 2012-04-10 15:22:33

+0

我只是問這個問題,可能嗎?我在一段時間內砰的一聲,但我找不到解決我的問題的方法。 – WhiteTiger 2012-04-10 15:23:45

+0

這是可能的。我已經在WP7應用上完成了它。你是否發送了推送信息,並且它從未被接收到?仔細檢查您發送的XML語法並閱讀響應以確保存在連接。 – tomasmcguinness 2012-04-10 15:45:47

回答

-1

MSDN文檔包括二次磚

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

這些外觀和數據使用更新的次平鋪的那些:

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

填充在推XML這三個要素,這將更新後面的瓷磚。

+0

感謝您的幫助,但我不說backTile,但一個額外的瓷磚 – WhiteTiger 2012-04-11 14:11:50

+0

對不起,這裏是一個示例應用程序,應該幫助:http://code.msdn。 microsoft.com/Get-to-Mango-7-Using-Push-39228be6 – tomasmcguinness 2012-04-11 14:55:44

+0

感謝您的幫助。 – WhiteTiger 2012-04-11 15:05:52

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 tomasmcguinness