用图像替换单元格中的文本,同时保留值以备将来使用

时间:2019-04-23 06:19:09

标签: c# gridview devexpress xtragrid

我正在使用以下代码根据字符串值为每个单元格设置图像

 _gvSearchRes.CustomRowCellEdit += (sender, e) => {
    GridView view = sender as GridView;
    if (e.Column.FieldName == "HASATTACHMENT")
    {
    RepositoryItemTextEdit te = new RepositoryItemTextEdit();
    te.ContextImage = (Bitmap)myparser.renderedvalue(e.CellValue.ToString());
    e.RepositoryItem = te;
    }
    };

这有效,但是没有删除已经存在的字符串元素。将图像添加到字符串之前。 有办法做到这一点,同时又将字符串值保留在另一个视图后面吗?以后我需要字符串值,例如:用户单击单元格。

enter image description here

0 个答案:

没有答案