This is how i have been shown how to get images and was wondering if anyone new any other ways of puting images in
Random rnd;
string currDir = Environment.CurrentDirectory;
DirectoryInfo di = Directory.GetParent(currDir);
di = Directory.GetParent(di.FullName);
string imgDir = di.FullName + "\\Images\\";
var imagesFiles = Directory.EnumerateFiles(imgDir);
Img1 = rnd.Next(imagesFiles.Count());
img1.Source = new BitmapImage(new Uri(imagesFiles.ElementAt(Img1)));