要讓GridControl的某列顯示圖片只須要數據源中有圖片就能夠正確顯示spa
一、給DataSet添加一列,格式爲imagecode
ds.Tables[0].Columns.Add("SIGN", typeof(Image));
二、遍歷ds給指定的列賦值orm
foreach (DataRow row in dsTable.Tables[0].Rows) { drArr = table.Select(string.Format("TABLENAME = '{0}'", row["TABNAME"])); if (drArr.Length > 0 || drArr == null) { row["SIGN"] = Resources.sign; } else { row["SIGN"] = Resources.white; } drArr = null; } dsTable.Tables[0].AcceptChanges();
三、數據源賦給GridControlblog