This question is locked. New answers and comments are not allowed.
Hello,
what type of object is the DataMemberBinding property of the GridViewImageColumn looking for?
I have tried different variations with no luck...
For example, here is the xaml:
The URL property of the DataContext is a string url to the image. This is not working. It is also not working when I write a custom converter that converts the URL to an ImageSource, and sets the DataMemberBinding property. Such as:
What am I doing wrong?
what type of object is the DataMemberBinding property of the GridViewImageColumn looking for?
I have tried different variations with no luck...
For example, here is the xaml:
<telerik:GridViewImageColumn DataMemberBinding="{Binding URL}"
ImageHeight="400"
ImageWidth="400"
ImageStretch="Uniform"
Header=""/>
The URL property of the DataContext is a string url to the image. This is not working. It is also not working when I write a custom converter that converts the URL to an ImageSource, and sets the DataMemberBinding property. Such as:
<telerik:GridViewImageColumn DataMemberBinding="{Binding URL, Converter={StaticResource URLToImageConverter}}"
ImageHeight="400"
ImageWidth="400"
ImageStretch="Uniform"
Header=""/>
What am I doing wrong?