2013-07-08 54 views
0

現在我們可以通過處理生和Toast通知revcieved事件:是否有辦法處理在Windows Phone 8中收到的Tile通知?

 _httpChannel.HttpNotificationReceived += new EventHandler<HttpNotificationEventArgs>(httpChannel_HttpNotificationReceived); 
     _httpChannel.ShellToastNotificationReceived += new EventHandler<HttpNotificationEventArgs>(httpChannel_HttpNotificationReceived);ere 

但有收到的瓷磚沒有事件。如何處理收到的瓷磚?

謝謝!

+0

Tile通知的目的是更新應用程序圖塊。爲什麼你需要處理Tile通知? http://stackoverflow.com/questions/17317959/wp8handle-toast-notification-when-application-is-in-backgroung/17319031#17319031 –

回答

1

無法處理或通知正在收到的磁貼通知。

+0

同意。作爲一種解決方法,我曾考慮過使用send Raw Notification,然後更新Tile in事件處理程序HttpNotificationReceived;但設備只能在應用處於前臺時收到Raw Notification,放棄。 – airbai

相關問題