vote up 0 vote down star

I'm trying to set a WPF Image's source.

XAML works:

<Image Name="ImageThing"
       Source="images/Thing.png"/>

Visual Basic fails:

ImageThing.Source = "images/Thing.png"

…with this exception:

Value of type 'String' cannot be converted to 'System.Windows.Media.ImageSource'.

How do I create the System.Windows.Media.ImageSource that I need?


Update

This code adapted from an MSDN example works:

Dim bmp As New BitmapImage()
bmp.BeginInit()
bmp.UriSource = New Uri("images/Thing.png", UriKind.Relative)
bmp.EndInit()
ImageThing.Source = bmp
flag

66% accept rate

2 Answers

vote up 5 vote down check

WPF uses an implicit type converter to convert the xaml string to the expected type. In code you are statically bound by the object type... If you look at the example here it shows how to set the source property to a BitmapImage that is generated from a local uri programatically.

link|flag
vote up 2 vote down

you will probably need to do something like this

Uri i = new Uri("images\Thing.png");

keep in mind that you need to use a \ not a / for a windows file system

Take a look here

link|flag

Your Answer

Get an OpenID
or

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