Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have many Images like this in my various views:

<Image Height="32" Width="32" Source="../../Img/TemplateImgs/Icon_299a.png"></Image>

Is there any way to tell SL to load the image from the root of the app—something like Source="/Img/Foo.png"

I know I could bind to a URI from my ViewModel, and use the Uri constructor to achieve this, but I'd really prefer something simpler.

Thanks

share|improve this question

1 Answer

up vote 2 down vote accepted

I think you would want to do something like Source="/COMPONENTNAME;component/Img/TemplateImgs/Icon_299a.png"

share|improve this answer
So COMPONENTNAME would be the name of my silverlight project? – Adam Rackis May 5 '11 at 15:28
Yes that's what it should be. – jesse May 5 '11 at 15:36
@AdamRackis this ever work for you? – jesse Jul 31 '12 at 17:22
Never really tested it - I was really dropping off Silverlight when I posted the question. I'll accept the answer for you :) – Adam Rackis Jul 31 '12 at 17:23
much appreciated :) – jesse Jul 31 '12 at 17:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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