本文介绍了当表中有多个列时,如何在datagridview上触发click事件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

private void dataGridView2_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            DataGridViewCell cell = (DataGridViewCell)dataGridView2.Rows[e.RowIndex].Cells[e.ColumnIndex];

            if (cell.ValueType.ToString() == "Abhinav")
            {
                MessageBox.Show("Right Name");
            }
            else
            {
                MessageBox.Show("Wrong Name");
            }
        }

推荐答案

private void dataGridView2_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            DataGridViewCell cell = (DataGridViewCell)dataGridView2.Rows[e.RowIndex].Cells[0];

            if (cell.ValueType.ToString() == "Abhinav")
            {
                MessageBox.Show("Right Name");
            }
            else
            {
                MessageBox.Show("Wrong Name");
            }
        }



这篇关于当表中有多个列时,如何在datagridview上触发click事件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 22:14