我在 DataGridView 上寻找类似的东西:
Image | Text |
Text | Text |
Image | Text
基本上,我只希望图像单元格和文本单元格在同一行。我能够让它与不同的类型一起使用,例如:复选框、文本等……但我无法让它与图像一起使用。
我收到此错误:Invalid Cast from 'System.String' to 'System.Drawing.Image'
有人知道解决方案或对我应该如何做有建议吗?谢谢
我在 DataGridView 上寻找类似的东西:
Image | Text |
Text | Text |
Image | Text
基本上,我只希望图像单元格和文本单元格在同一行。我能够让它与不同的类型一起使用,例如:复选框、文本等……但我无法让它与图像一起使用。
我收到此错误:Invalid Cast from 'System.String' to 'System.Drawing.Image'
有人知道解决方案或对我应该如何做有建议吗?谢谢
DataGridViewImageColumn
在某些单元格中显示文本类型的列相对容易。
您需要做的就是将所需的单元格替换为DataGridViewTextBoxCell
.
例如,如果我将以下图像列添加到我的网格中:
DataGridViewImageColumn imageColumn = new DataGridViewImageColumn();
imageColumn .Name = "ImageColumn";
imageColumn .HeaderText = "An Image!";
Image i = Image.FromFile(@"C:\Pictures\TestPicture.jpg");
imageColumn.Image = i;
dataGridView1.Columns.Add(imageColumn);
您可以用这样的文本替换给定的单元格(在按钮处理程序中,但您也可以在数据绑定完成处理程序中的某处进行)。
private void button1_Click(object sender, EventArgs e)
{
dataGridView1.Rows[3].Cells["ImageColumn"] = new DataGridViewTextBoxCell();
dataGridView1.Rows[3].Cells["ImageColumn"].Value = "Some text!";
}
如果您想要不同的图像(您需要绑定到图像类型的属性)并且想要不同的文本,此解决方案会为您留下一些工作。由于图像列的 Value 属性是 Image 类型,因此您不能使用相同的绑定。
您可以制作自己的覆盖图像列来处理此问题,但这会有点工作,与简单地为您想要文本的单元格设置值相比,这可能不会为自己付出代价。
我发现我必须处理DataGridViewCellFormattingEventHandler
并分配图像DataGridViewCellFormattingEventHandler
(它在退出时抛出异常)。
在DataGridViewCellFormattingEventHandler
我分配e->Value = System::Drawing::Image::FromFile("c:/Test.jpeg");
或e.Value = System.Drawing.Image.FromFile("c:/Test.jpeg");
如需更好的解决方案,请参阅此Blogspot帖子。
我为我的项目尝试了相同的解决方案,它运行良好,在我的数据网格单元格中显示 16X16 像素的图像,我在上面的TextandImageColumn
类中编辑了函数:
protected override void Paint(Graphics graphics, Rectangle clipBounds,
Rectangle cellBounds, int rowIndex, DataGridViewElementStates cellState,
object value, object formattedValue, string errorText,
DataGridViewCellStyle cellStyle,
DataGridViewAdvancedBorderStyle advancedBorderStyle,
DataGridViewPaintParts paintParts)
{
// Paint the base content
base.Paint(graphics, clipBounds, cellBounds, rowIndex, cellState,
value, formattedValue, errorText, cellStyle,
advancedBorderStyle, paintParts);
if (this.Image != null)
{
PointF p = cellBounds.Location;
p.X += 0;
p.Y += 4;
graphics.DrawImage(this.Image, p);
}
}