Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating a secondary tile with background image path from isolated storage

in my app all my images are saved in the IsolatedStorage space. Can I create some secondary tiles with Uri's that link to my app's Isolated storage? Is there anyway to do this? I wasn't able to find something.

Thanx

like image 761
johnX99 Avatar asked Jul 25 '11 14:07

johnX99


1 Answers

Well your images have to be saved under Shared/ShellContent. Read documentation here.

So for example you path to image Tile would be something like this:

tileData.BackgroundImage = new Uri("isostore:/Shared/ShellContent/background.png", UriKind.Absolute)

You have to add "isostore" prefix to load images from isolated store.

like image 70
Damian Antonowicz Avatar answered Nov 13 '22 05:11

Damian Antonowicz