Thanks for the help.I actually got this to work using a different bit of code (as shown below). Dim photoName As String = selectedFeaturePolling.Attributes.Item("IMAGES")
Dim uriString As String = String.Format("../PollingPlaces/{0}", photoName)
Dim photo As Image = New Image
photo.Source = New BitmapImage(New Uri(App.Current.Host.Source, uriString))
PollingDialog.PollingPlaceImage.Source = photo.Source
Also, while debugging I saw what UriSource was actually being passed in as the image.source. I then realized that my photos folder was not even there...Which brings me to the questions I probably should have asked first. Where in my solution should I save the photos and should I set their build action to "Resources" or "Content"?Thanks again,Mark