Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
440
xamgrid HyperlinkButton content as image
posted

Hello

 Based on this below the Download Document Column will show text "Dowload"

 I want to keep an image there and when clicked as per the NavigateUri the link will work.

 How do i show the user a download.png per say in that column,.

<ig:XamGrid.Columns>
 <ig:UnboundColumn Key="Download Document">
  <ig:UnboundColumn.ItemTemplate>
   <DataTemplate>
    <HyperlinkButton Content="Download" NavigateUri="{Binding RowData.DocLink}" TargetName="_blank"></HyperlinkButton>
   </DataTemplate>
  </ig:UnboundColumn.ItemTemplate>
 </ig:UnboundColumn>
 <ig:HyperlinkColumn Key="DocLink" HeaderText="Document Link" Width="130"  IsSummable="False" TargetName="_blank" Visibility="Collapsed"/>
 <ig:TextColumn Key="DocName" HeaderText="Name" Width="150"  IsSummable="False"/>