I have images in folder Images in my windows phone solution. How can i get collection of images in this folder? Build Action of all images is "Content".
A:
Even if the image is set to content you can still use GetResourceStream
.
var imgStream = Application.GetResourceStream(new Uri("/images/filename.jpg", UriKind.Relative));
Matt Lacey
2010-10-26 12:51:53
I don't know names of images. I need to get all images uri from folder.
Rover
2010-10-26 12:53:54