Reputation: 179
So ive been toying around with the FlipTileData for awile and in my recent app i needed the tile to be only two sizes (not the biggest one). Ive tried my best so far with it, the code:
FlipTileData tileData = new FlipTileData
{
BackgroundImage = new Uri("isostore:" + filename, UriKind.Absolute),
};
Ive looked up on http://msdn.microsoft.com/en-us/library/microsoft.phone.shell.fliptiledata(v=vs.105).aspx for anymethods/properties that might relate to it but with no luck.
Ive seen apps on the store that have done this, but dont know if they are using the FlipTileData or something else.
Any help will be appreciated
Upvotes: 0
Views: 83
Reputation: 2616
You should go to the WMAppManifest.xml file in your project, under Properties.
Then you go to Application UI tab, which is the first.
One of the last options is Support for Large Tiles
. You should uncheck that.
See image below.
Upvotes: 2