我在我的项目中使用Telerik RadGridView。我想在列中显示图像。
GridViewImageColumn col1 = new GridViewImageColumn();
col1.Width = 100;
col1.DataMemberBinding = new Binding("id");
col1.Header = "PhotoByConverter";
col1.DataMemberBinding.Converter = new ThumbnailConverter();
grid.Columns.Add(col1);
GridViewDataColumn col2 = new GridViewDataeColumn();
col2.Width = 100;
col2.DataMemberBinding = new Binding("firstName");
col2.Header = "Person name";
grid.Columns.Add(col2);
Grid.ItemsSource=DataTable;
第一列不是吵架,但第二列工作正常。我使用Converter for image如下所示
public class ThumbnailConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
IEnumerable<thumbNail> result = from n in thumbnails
where n.personID == value.ToString()
select n;
if (result != null && result.First().thumbnail != null)
{
return result.First().thumbnail.file;
}
else
{
return null;
}
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new Exception("The method or operation is not implemented.");
}
}
我通过人物的id缩略图找到并将其设置为GridViewImageColumn的数据。我检查了Debuger对流器工作正常。我不能不指望它为什么不起作用。 有什么想法吗?
答案 0 :(得分:0)
我找到了解决这些问题的方法。唯一需要的是使用方括号中的属性名称
GridViewImageColumn col1= new GridVeiwImageColumn();
col1.DataMemberBinding = new Binding("[id]");