如何在Windows Phone 8应用程序中显示未读消息和呼叫的徽章?
当我打开应用程序时,我希望在我的应用程序图标中显示通知计数,它将删除类似于呼叫和消息应用程序。
我知道磁贴通知但我不知道在打开应用程序时如何删除徽章
注意:如何使用徽章发送和接收Toast通知
答案 0 :(得分:-1)
我得到了解决方案......
Handle tile pragmatically in windows phone.
ShellTile tile = ShellTile.ActiveTiles.First();
if (null != tile)
{
// create a new data for tile
StandardTileData data = new StandardTileData();
tile foreground data
data.Title = "";
data.BackgroundImage = new Uri("/Assets/Tiles/IconicTileMediumLarge.png", UriKind.Relative);
data.Count = 0;
to make tile flip add data to background also
data.BackTitle = "Secret text here";
data.BackBackgroundImage = new Uri("/Images/Green.jpg", UriKind.Relative);
data.BackContent = "Back Content Text here...";
update tile
tile.Update(data);