datagridview 点击一行数据 显示图片在PictureBox控件中。如何实现。用C#!!

2025-01-08 02:38:11
推荐回答(2个)
回答1:

private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
string path=dataGridView1.Rows[dataGridView1.CurrentRow.Index ].Cells["path"].Value.ToString() ;
System.IO.FileStream fs = new System.IO.FileStream(path, System.IO.FileMode.Open);
图片控件.Image= System.Drawing.Image.FromStream(fs);
fs.Close();
}若希望程序更健壮,可以给图片读取套上try

回答2:

楼主,你好有些控件是不符合硬盘的,所以才会出现上面的情况,建议你找一个电脑程序者、帮你解决问题。如果有帮到你的、请采纳为答案、谢谢、QQ1076921218