1
我已經開發WP8應用,是否有可能設置BackTile naviagtion URI單擊
我在某些情況下更新我的應用程序平鋪,
在這裏,我已經使用了更新我的瓷磚代碼
ShellTile TileToFind = ShellTile.ActiveTiles.First();
StandardTileData NewTileData = new StandardTileData
{
BackgroundImage = new Uri(@"/ApplicationTile.png", UriKind.RelativeOrAbsolute),
Count = NotificationCount,
BackTitle = offers.data.info[0].offer_title,
BackContent = offers.data.info[0].location_area,
};
TileToFind.Update(NewTileData);
這裏我的疑問是,是否可以設置導航的URI BackTile,就像我給導航URI在我這裏舉杯消息
Microsoft.Phone.Shell.ShellToast toast = new Microsoft.Phone.Shell.ShellToast();
toast.Content = "@" + offers.data.info[0].location_area;
toast.Title = offers.data.info[0].offer_title;
toast.NavigationUri = new Uri("/LocationDealsPage.xaml", UriKind.Relative);
toast.Show();
我需要導航到不同的頁面,同時單擊後面的瓷磚和前面的瓷磚。
任何人請讓我知道,是否有可能不是,如果可能請讓我知道如何。
如果不可能,還有其他方法可以做到這一點。
謝謝。
Noorul。
謝謝馬特,你的回答對我有幫助。 – Noorul 2013-03-27 13:40:56