The background image for my Panorama control is stored in "/Shared/ShellContent/Background.png".

In my XAML I set the reference to:

<controls:Panorama.Background>
    <ImageBrush ImageSource="isostore:/Shared/ShellContent/Background.png" />
</controls:Panorama.Background>

but the binding doesn't seem to work.

I have verified the existence of the PNG file using the excellent Isolated Storage Explorer.

Is this scenario even possible possible via XAML?

link|improve this question

67% accept rate
feedback

1 Answer

Is this even a binding, it's a reference to the isolated storage.

If your isolated storage is empty when this is bound then it won't update because there is no onNotifyPropertychanged

link|improve this answer
The idea is to be able to reference an image in isolated storage rather than an application resource which uses the same syntax. It would also help with a known Mango bug for dynamically loading panorama backgrounds. – Philipp Schmid Feb 16 at 17:23
use {binding path=background, ElementName=theUserControlName} and in your code behind write a property with inotifypropertychanged that you assign from the code. – Joseph Le Brech Feb 16 at 17:45
I've done that, but there is a bug in Mango where the Panorama control is not resizing the image after is has been loaded via a binding. Hence I was hoping to at least load the initial image via file reference rather than via binding. – Philipp Schmid Feb 16 at 22:48
do you do yourPano.Measure(new Size()); maybe you could put this in the notify event? – Joseph Le Brech Feb 17 at 9:48
feedback

Your Answer

 
or
required, but never shown

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