2

我有一个 DataGridView 我正在提供一个 List

DataGridView 填充完美,但我现在希望能够在网格(任何列)中搜索用户输入的值。

我一直在试图潜入解决方案,但我找不到 DataGridView.Cells[X,Y] 类型的属性。

我试过这个:

String searchVal = textBoxValueToFindInGrid.Text.Trim();
for (int i = 0; i < dataGridViewPlatypusElements.RowCount; i++)
{
    for (int j = 0; j < dataGridViewPlatypusElements.ColumnCount; j++) {
        if (dataGridViewPlatypusElements.Text.Contains(searchVal))
        {
            dataGridViewPlatypusElements.GoTo*(Cells[j,i]);
        }
    }
}

...但是,当然, DataGridView.Text 不包含任何有用的东西。这是我需要 Cells[X,Y] 属性的地方。

  • 在这种情况下,我不会认为它有害。
4

2 回答 2

2

可能对有类似问题的其他人有用:

if(dataGridView.Rows[i].Cells[j].Value.ToString().Contains(searchText)
{
    dataGridView.Rows[i].Cells[j].Selected = true;
}

如果您需要有关单元格的更多信息,可以遍历选定的单元格:

foreach(DataGridViewCell selectedCell in dataGridView.SelectedCells)
{
    ..........
}
于 2013-01-25T01:36:53.120 回答
1

怎么样

dataGridView.Rows[X].Cells[Y].Value
于 2012-06-29T02:26:15.030 回答