Why can't I set the Image Source in WPF app?

Posted by elmonty on Stack Overflow See other posts from Stack Overflow or by elmonty
Published on 2010-03-17T19:10:33Z Indexed on 2010/03/17 19:11 UTC
Read the original article Hit count: 346

Filed under:
|
|
|

I'm just learning WPF. I'm using VS 2008. I've added an Image control to my XAML, and I added a GIF file to the project. If I use the XAML Designer's property panel to set the image's Source property, the drop-down list for the Source property contains the following:

C:\Sample Project;component/pinHorizontal.gif

There are several problems with this:

  1. My project, named "Sample Project," is not in the root of my drive.

  2. Why is ";component" in there?

If I select this value as given, I get the error "Property value is not valid" (yeah, no kidding).

If I go into the XAML source and set the Source property manually, like so:

The XAML Designer gives me this error:

"The file pinHorizontal.gif is not part of the project or its 'Build Action' property is not set to 'Resource'."

Why is this task so difficult? How do I assign an image source?

© Stack Overflow or respective owner

Related posts about visual-studio-2008

Related posts about xaml