So I'm trying to display an image that is ouside the path of my application. I only have a relative image path such as "images/background.png" but my images are somewhere else, I might want to choose that base location at runtime so that the binding maps to the proper folder. Such as "e:\data\images\background.png" or "e:\data\theme\images\background.png"
<Image Source="{Binding Path=ImagePathWithRelativePath}"/>
Is there any way to specify either in XAML or code behind a base directory for those images?