Reputation: 55
Can i Change the Tile When any Notification comes in Windows Phone. I want to change the Count on the Tile When Notification Comes In Windows Phone
Upvotes: 0
Views: 86
Reputation: 276296
First select the tile
var primaryTile = ShellTile.ActiveTiles.First();
Then update it, where count
is the count you want it to show.
primaryTile.Update(new FlipTileData { Count = count });
Upvotes: 1