如何获取datagridview行号和列号?

2024-12-27 20:56:25
推荐回答(5个)
回答1:

解决方法一:遍历datagridview所有行和列 匹配你输入的值
dataGridView1.Rows[索引]获取行
dataGridView1.Rows[索引].Cells[索引]获取该行的某一项,然后记录下rows的索引 和cells的索引就是你要的行号和列号
解决方法二:为该datagridview添加CellClick这个事件(点击项触发的事件)
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
int i = e.RowIndex; //是行号
int j = e.ColumnIndex //是列号
}

回答2:

获取datagridview行号和列号,参考实例和注解如下:
private void dataGridView1_CellEnter(object sender, DataGridViewCellEventArgs e)
{
iTag = (int)this.Tag;
//if (iTag == 4)
//{
// if (e.ColumnIndex ==3)
// MessageBox.Show("该列为只读列", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Information);
//}
//获取当前单元格的行号和列号
string rowIndex = e.RowIndex.ToString();
string colIndex = e.ColumnIndex.ToString();
}

回答3:

string inputText = "6";
for (int i = 0; i < this.dataGridView1.Rows.Count; i++)
{
for (int j = 0; j < this.dataGridView1.Columns.Count; j++)
{
if (inputText == this.dataGridView1.Rows[i].Cells[j].Value.ToString())
{
MessageBox.Show(string.Format("第{0}行第{1}列", i, j));
}
}
}

回答4:

var key = "7";//搜索关键字
var tb = document.getElementById(gridview的客户端id);
for(var i=0;i for(var j=0;j if(tb.rows[i].childNodes[j].innerHTML == key{
alert('结果在行'+i+'列'+j);
break;
}
}
}

回答5:

gridview.rows[i].cells[i]
好像是这样,试试