【发布时间】:2016-08-08 16:39:35
【问题描述】:
使用 C# 和 Visual Studio,我有一个带有 2 列的 DataGridView。对于每一行,第一列将显示文本。对于除一个特定行之外的每一行,第二列将显示文本。在第二列的一个特定单元格中,我需要显示一张图片。
例如:
Row[0].Cell[0] = "test" Row [0].Cell[1] = "test"
Row[1].Cell[0] = "test" Row [1].Cell[1] = "test"
Row[2].Cell[0] = "test" Row [2].Cell[1] = need to display an image here
Row[3].Cell[0] = "test" Row [3].Cell[1] = "test"
【问题讨论】:
标签: c# image datagridview cell