0

如何在 windows phone 8 应用程序中显示未读消息和通话的徽章?

当我打开应用程序时,我想在我的应用程序图标中显示通知计数,它会像呼叫和消息应用程序一样删除。

我知道磁贴通知,但我不知道打开应用程序时如何移除徽章

注意:如何使用徽章发送和接收 toast 通知

4

1 回答 1

-1

我得到了解决方案...

在 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);
于 2013-09-03T04:58:16.980 回答