0

关于 NWindLayout 演示的问题
dxdemo://Win/XtraGrid/MainDemo/NWindLayout

scrin1

scrin2

如何在字段中放置图像?
我需要将图片存储在数据库中吗?
或者
图片存储在本地磁盘,数据库存储图片的链接,“照片”字段根据链接显示照片?

4

1 回答 1

0

据我了解,您的数据库中有一个列,其数据是表示图像路径的字符串。并且您将 PictureEdit 指定为该列的就地编辑器。如果是这样,建议使用未绑定列的方法,因为 PictureEdit 编辑器不提供通过将字符串路径设置为编辑器值来显示图像的功能:

void gridView1_CustomUnboundColumnData(object sender, DevExpress.XtraGrid.Views.Base.CustomColumnDataEventArgs e) {
    GridView view = sender as GridView;
    if(e.Column.FieldName == "Image" && e.IsGetData) {
        string fileName = view.GetRowCellValue(view.GetRowHandle(e.ListSourceRowIndex), "ImagePath");
        e.Value = /* get image from cache by filename or load image from file and add to cache */
    }
}  

查看如何在 Grid 中显示外部图像(如果其数据源包含指向图像的链接)示例,以了解此方法的实际效果。

于 2018-04-19T13:12:53.613 回答