Reputation: 41208
I'm doing this:
<Image Grid.Column="0" Grid.Row="0" x:Name="Andromeda" Source="/Resources/64px-Andromedahero.gif" />
But it's just not working. :S
Here's a screenshot of the file/folder hierarchy. Any help?
Upvotes: 0
Views: 177
Reputation: 564801
A couple of potential options:
Edit:
If it's a control library, you'll want to use:
Source="pack://application:,,,/MyControlLibraryAssembly;component/Resources/64px-Andromedahero.gif"
Upvotes: 1