欢迎来到入门教程网!

C#教程

当前位置:主页 > 软件编程 > C#教程 >

Winform在DataGridView中显示图片

来源:本站原创|时间:2020-01-10|栏目:C#教程|点击:

首先,要添加图片列,绑定数据的时候会触发CellFormatting事件,在事件中取出图片路径,读取图片赋值给当前单元格。

private void dataGridview1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
  if (dataGridview1.Columns[e.ColumnIndex].Name.Equals("Image"))
  {
    string path = e.Value.ToString();
    e.Value = GetImage(path);
  }
}
public System.Drawing.Image GetImage(string path)
{
  System.IO.FileStream fs = new System.IO.FileStream(path, System.IO.FileMode.Open);
  System.Drawing.Image result = System.Drawing.Image.FromStream(fs);

  fs.Close();

  return result;

} 

以上就是DataGridView如何显示图片一些代码片段,希望能给大家一个参考,也希望大家多多支持我们。

上一篇:C# 设计模式系列教程-模板方法模式

栏    目:C#教程

下一篇:C# 设计模式系列教程-命令模式

本文标题:Winform在DataGridView中显示图片

本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/6493.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有