I'm working with Visual Studio 2013 and .NET 4.5.
I had an image linked as follows, with \\, and it was showing up in VS designer view but then not during runtime.
<Image Grid.Column="1" Source="..\\Resources\\MyImage.bmp" Stretch="Uniform"/>
After quite a bit of trying, I got it to work by changing the \\ to / symbols, like so:
<Image Grid.Column="1" Source="../Resources/MyImage.bmp" Stretch="Uniform"/>
I'm just curious as to why the designer was able to find my image with the backslashes while runtime was not, and then why the forward slashes fixed this problem. Anyone know? Thanks