回复 1楼PSM_001的帖子
很抱歉回复晚了。
根据我的理解,您需要尝试在单元格里添加.ico图片。
可以使用在2楼提到的FetchCellStyle事件。
Cell.ForegroundImage中提供方法可以设置图片。
代码参考:
- void c1TrueDBGrid1_FetchCellStyle(object sender, C1.Win.C1TrueDBGrid.FetchCellStyleEventArgs e)
- {
- if (e.Col == 1)
- {
- if (e.Row == 0 || e.Row == 2 || e.Row == 4)
- {
- e.CellStyle.ForegroundImage = Image.FromFile(@"..\..\favicon.ico");
- }
- }
- }
复制代码
这个事件仅仅在列的FetchStyle为true的时候起作用。
- c1TrueDBGrid1.Splits[0].DisplayColumns[0].FetchStyle = true;
- c1TrueDBGrid1.Splits[0].DisplayColumns[1].FetchStyle = true;
复制代码 |