You can change dynamically with c# the Image Source of an image with the following code
imageName.Source = new BitmapImage(new Uri("ms-appx:/path"));
Where
imageName = (yours image control name) path = (yours image path in the VS solution)
You can change dynamically with c# the Image Source of an image with the following code
imageName.Source = new BitmapImage(new Uri("ms-appx:/path"));
Where
imageName = (yours image control name) path = (yours image path in the VS solution)