This is what I have tried:
xml Code:
  1. in my XAML Code
  2.                 <GridView>
  3.                     <GridViewColumn Header="First Name" DisplayMemberBinding="{Binding FirstName}"/>
  4.                     <GridViewColumn Header="Last Name" DisplayMemberBinding="{Binding Surname}"/>
  5.                     <GridViewColumn Header="Date Of Birth" DisplayMemberBinding="{Binding DateOfBirth}"/>
  6.                     <GridViewColumn Header="Photo" DisplayMemberBinding="{Binding IdPic}"/>
  7.                 </GridView>
  8.             </ListView.View>
  9.         </ListView>
  10.         <Image Height="34" HorizontalAlignment="Left" Margin="33,269,0,0" Name="imgPic" Stretch="Fill" VerticalAlignment="Top" Width="42" Source="/DataBrowser;component/Images/smoking_av.jpg" />

All I am trying to do is get the image displayed in the grid control.
The next step is to fetch this from a database and then populate the grid.