程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> Winform在DataGridView中顯示圖片

Winform在DataGridView中顯示圖片

編輯:C#入門知識

Winform在DataGridView中顯示圖片。本站提示廣大學習愛好者:(Winform在DataGridView中顯示圖片)文章只能為提供參考,不一定能成為您想要的結果。以下是Winform在DataGridView中顯示圖片正文


起首,要添加圖片列,綁定命據的時刻會觸發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若何顯示圖片一些代碼片斷,願望能給年夜家一個參考,也願望年夜家多多支撐。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved