点击dgv某列的单元格时触发事件的方法

允我心安 提交于 2020-02-17 06:33:16
private void DataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
    {
        if (e.ColumnIndex == 1) //第一列是 ID (隐藏),第二列才是图片(Pic)列
        {
            int rowIndex = this.dataGridView1.CurrentRow.Index; // 取得当前单元格的行Index 
            string pic = dataGridView1.Rows[rowIndex].Cells["Pic"].Value.ToString();
            byte[] str = Convert.FromBase64String(pic);

            Image image = GetImage(str);
            this.pictureBox1.Image = image;
        }
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!