Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im trying to load a image at runtime in WPF using the following code

_image = new Image();
BitmapImage src = new BitmapImage();
src.BeginInit();
src.UriSource = new Uri(@"pack://application:,,,/images/tagimages/placeholder.png", UriKind.Absolute);                
src.CacheOption = BitmapCacheOption.OnLoad;
src.EndInit();
_image.Source = src;
_image.Stretch = Stretch.None;

In my project I have a folder called images and a sub folder of that folder called tagimages that contains the placeholder.png. When I run this code I get the following error

"Cannot locate resource 'images/tagimages/placeholder.png'"

What am I doing wrong?

share|improve this question
1  
Have you set the build action of the image files to 'Resource' in your project? – paul Mar 20 '12 at 10:14
Yes I have set it to resource and I have made everything lower case to try and eliminate any case issues – John Mar 20 '12 at 10:20

1 Answer

up vote 3 down vote accepted

It turns out that I should have used

Uri(@"pack://application:,,,/<MyProject>;component/images/tagimages/placeholder.png", UriKind.Absolute);
share|improve this answer

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.