Adding image source on code-behind
This is a very simple line that I tend to forget: this.MyImage.Source = new BitmapImage(new Uri("/MyNameSpace;images/someimage.png", UriKind.Relative)) Is just on how to set image source on a image container. It can also refer a different project as if it was a module if you have set it so (I think)… imageSource = new BitmapImage(new Uri("/DoisSoft.TTrack.Common;component/Images/icons/no_entry_adjusted.png",

