本文介绍了在gridview中行索引和值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

考虑有一些带有一些数据的datagridview。我需要得到特定值的行索引。没有选择索引。请考虑我前面提到的值是变量。我是C#的初学者。

code-keyword> span> rowIndex = 0 ; rowIndex< dataGridView1.Rows.Count; rowIndex ++)
for int columnIndex = 0 ; columnIndex < dataGridView1.ColumnCount; columnIndex ++)
{
if (dataGridView1 [columnIndex,rowIndex] .Value.ToString()== textBox2.Text)
return rowIndex;
}




Consider there is a datagridview with some data.I need to get the row index for particular value.Not selected index.Please consider that value I mentioned earlier is in a variable.I am a beginner for C#.

解决方案




这篇关于在gridview中行索引和值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 21:28