根据列和值在dataGridView中查找一行

时间:2012-04-16 18:02:03

标签: c# winforms datagridview

我有一个包含3列的dataGridView:使用数据库信息绑定的SystemId,FirstName,LastName。我想强调某一行,我会用它来做:

dataGridView1.Rows[????].Selected = true;

但是行ID我不知道并且bindingsource一直在变化,因此第10行在一个实例中可能是“John Smith”但在另一个实例中甚至不存在(我有一个根据用户输入的内容过滤掉源的过滤器) ,所以输入“joh”将产生所有行,其中名字/姓氏中包含“joh”,因此我的列表可以从50个名称变为3个单击中的3个。

我想找到一种方法,可以根据SystemId和相应的数字选择行。我可以使用以下方法获取系统ID:

systemId = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells["SystemId"].Value.ToString();

现在我只需要将它应用于行选择器。像dataGridView1.Columns [“SystemId”] .IndexOf(systemId)之类的东西,但不起作用(也不存在这样的方法)。非常感谢任何帮助。

7 个答案:

答案 0 :(得分:132)

这将为您提供值的网格视图行索引:

String searchValue = "somestring";
int rowIndex = -1;
foreach(DataGridViewRow row in DataGridView1.Rows)
{
    if(row.Cells[1].Value.ToString().Equals(searchValue))
    {
        rowIndex = row.Index;
        break;
    }
}

或LINQ查询

int rowIndex = -1;

        DataGridViewRow row = dgv.Rows
            .Cast<DataGridViewRow>()
            .Where(r => r.Cells["SystemId"].Value.ToString().Equals(searchValue))
            .First();

        rowIndex = row.Index;

然后你可以这样做:

dataGridView1.Rows[rowIndex].Selected = true;

答案 1 :(得分:20)

以上答案仅在AllowUserToAddRows设置为false时有效。如果该属性设置为true,那么当循环或Linq查询尝试协商新行时,您将获得NullReferenceException。我已修改上述两个已接受的答案来处理AllowUserToAddRows = true

循环回答:

String searchValue = "somestring";
int rowIndex = -1;
foreach(DataGridViewRow row in DataGridView1.Rows)
{
    if (row.Cells["SystemId"].Value != null) // Need to check for null if new row is exposed
    {
        if(row.Cells["SystemId"].Value.ToString().Equals(searchValue))
        {
            rowIndex = row.Index;
            break;
        }
    }
}

LINQ回答:

int rowIndex = -1;

bool tempAllowUserToAddRows = dgv.AllowUserToAddRows;

dgv.AllowUserToAddRows = false; // Turn off or .Value below will throw null exception

    DataGridViewRow row = dgv.Rows
        .Cast<DataGridViewRow>()
        .Where(r => r.Cells["SystemId"].Value.ToString().Equals(searchValue))
        .First();

    rowIndex = row.Index;

dgv.AllowUserToAddRows = tempAllowUserToAddRows;

答案 2 :(得分:2)

或者你可以这样使用。这可能会更快。

int iFindNo = 14;
int j = dataGridView1.Rows.Count-1;
int iRowIndex = -1;
for (int i = 0; i < Convert.ToInt32(dataGridView1.Rows.Count/2) +1; i++)
{
    if (Convert.ToInt32(dataGridView1.Rows[i].Cells[0].Value) == iFindNo)
    {
        iRowIndex = i;
        break;
    }
    if (Convert.ToInt32(dataGridView1.Rows[j].Cells[0].Value) == iFindNo)
    {
        iRowIndex = j;
        break;
    }
    j--;
}
if (iRowIndex != -1)
    MessageBox.Show("Index is " + iRowIndex.ToString());
else
    MessageBox.Show("Index not found." );

答案 3 :(得分:2)

试试这个:

        string searchValue = textBox3.Text;
        int rowIndex = -1;

        dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
        try
        {
            foreach (DataGridViewRow row in dataGridView1.Rows)
            {
                if (row.Cells["peseneli"].Value.ToString().Equals(searchValue))
                {
                    rowIndex = row.Index;
                    dataGridView1.CurrentCell = dataGridView1.Rows[rowIndex].Cells[0];
                    dataGridView1.Rows[dataGridView1.CurrentCell.RowIndex].Selected = true;

                    break;
                }
            }
        }
        catch (Exception exc)
        {
            MessageBox.Show(exc.Message);
        }

答案 4 :(得分:1)

如果您只想检查该项目是否存在:

IEnumerable<DataGridViewRow> rows = grdPdfs.Rows
            .Cast<DataGridViewRow>()
            .Where(r => r.Cells["SystemId"].Value.ToString().Equals(searchValue));
if (rows.Count() == 0) 
{
    // Not Found
} 
else 
{
    // Found
}

答案 5 :(得分:1)

这是基于戈登的上述答案 - 并非所有这些都是我的原创作品。 我所做的是为我的静态实用程序类添加一个更通用的方法。

public static int MatchingRowIndex(DataGridView dgv, string columnName, string searchValue)
        {
        int rowIndex = -1;
        bool tempAllowUserToAddRows = dgv.AllowUserToAddRows;

        dgv.AllowUserToAddRows = false; // Turn off or .Value below will throw null exception
        if (dgv.Rows.Count > 0 && dgv.Columns.Count > 0 && dgv.Columns[columnName] != null)
            {
            DataGridViewRow row = dgv.Rows
                .Cast<DataGridViewRow>()
                .FirstOrDefault(r => r.Cells[columnName].Value.ToString().Equals(searchValue));

            rowIndex = row.Index;
            }
        dgv.AllowUserToAddRows = tempAllowUserToAddRows;
        return rowIndex;
        }

然后以我想要使用它的任何形式,我调用传递DataGridView,列名和搜索值的方法。为简单起见,我将所有内容转换为字符串进行搜索,尽管添加重载以指定数据类型非常容易。

private void UndeleteSectionInGrid(string sectionLetter)
        {
        int sectionRowIndex = UtilityMethods.MatchingRowIndex(dgvSections, "SectionLetter", sectionLetter);
        dgvSections.Rows[sectionRowIndex].Cells["DeleteSection"].Value = false;
        }

答案 6 :(得分:0)

使用 WPF

的用户
TearDown Script

如果您想在此之后获取所选行项,则以下代码段是有用的

for (int i = 0; i < dataGridName.Items.Count; i++)
{
      string cellValue= ((DataRowView)dataGridName.Items[i]).Row["columnName"].ToString();                
      if (cellValue.Equals("Search_string")) // check the search_string is present in the row of ColumnName
      {
         object item = dataGridName.Items[i];
         dataGridName.SelectedItem = item; // selecting the row of dataGridName
         dataGridName.ScrollIntoView(item);                    
         break;
      }
}