Is it possible to display only an Image in a HyperlinkColumn? No need to display any text.
Hello Ray,
Thank you for your post. I have been looking into it and I created a sample project for you with the functionality you want.
Hope it helps you.
Steve
So you are telling to have a column with an image and make i invisbile (key="imageurl" and then use that in the hyperlinkbutton as rowdata.imageurl?
can you give the full XAML
Thanks. I have not experimented with Unbound columns yet. I will give this a try and let you know and it worked.
Hi,
You can use an UnbounColumn instead:
<ig:UnboundColumn Key="PageURL">
<ig:UnboundColumn.ItemTemplate>
<DataTemplate>
<HyperlinkButton NavigateUri="RowData.PageUrl" >
<Image Source="{Binding RowData.ImageUrl}"/>
</HyperlinkButton>
</DataTemplate>
</ig:UnboundColumn.ItemTemplate>
</ig:UnboundColumn>
Hope this helps,
-SteveZ