vote up 2 vote down star

I'm tinkering with Silverlight 2.0.

I have some images, which I currently have a static URL for the image source. Is there a way to dynamically load the image from a URL path for the site that is hosting the control?

Alternatively, a configuration setting, stored in a single place, that holds the base path for the URL, so that each image only holds the filename?

flag

19% accept rate

6 Answers

vote up 0 vote down

below worked for me only when image is included in the project as a resource file.

img.Source = new BitmapImage(new Uri("/images/my-image.jpg", UriKind.Relative));

I am unable to access url from absolute URLs. Not even flickr's farm url for images.

link|flag
vote up 0 vote down

img.Source = new BitmapImage(new Uri("/images/my-image.jpg", UriKind.Relative)); will properly resolve to the root of the Silverlight application where as "../images/my-image.jpg" will not.

This is only true in the code-behind when dynamically setting the source of the image. You cannot use this notation (the "/" to designate the root) in the XAML (go fiquire, hope they fix that)

link|flag
vote up 0 vote down

img.Source = new BitmapImage(image uri) must work.

link|flag
vote up 1 vote down

From what I gather you aren't trying to change the image itself dynamically, but rather to correctly determine the location of the image at runtime.

I believe simply prefixing the image relative URL with "../" should get you to the root of your application, not necessarily the site as the application might not be hosted in the root of a site.

Remember that all relative URLs specified in a XAP file are relative to the location of the XAP file itself. So if your XAP file is located as follows:

http://somesite.foo/app1/somethingelse/clientbin/MyFoo.xap

And you where trying to link the following image:

http://somesite.foo/app1/somethingelse/images/a/boo.png

Then you would set your Image URL to:

../images/a/boo.png

I hope that helps.

link|flag
vote up 0 vote down

SilverlightHost.Source will provide you the URL that was used to load the XAP file. You can use this to then construct a relative URL for your images.

So if for example your XAP is hosted on http://foo.bar/ClientBin/bas.xap and your images were stored in http://foo.bar/Images/ you can simply use the Source to grab the host name and protocol to construct the new URI.

link|flag
vote up 3 vote down

In the code behind or a value converter you can do

  Uri uri = new Uri("http://testsvr.com/hello.jpg");
  YourImage.Source = new BitmapImage(uri);
link|flag

Your Answer

Get an OpenID
or

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