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

link|improve this question

50% accept rate
what have you tried? – Matt Lacey Jul 25 '11 at 15:52
feedback

1 Answer

up vote 13 down vote accepted

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.

link|improve this answer
thanx a lot i missed that :) – johnX99 Jul 25 '11 at 16:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.