0

我在搜索时从 DataGridView 中选择一行时遇到问题。数据源是来自数据库的 DataTable。我正在使用一个搜索框来检查 DataGridView 中是否有与产品密钥匹配的产品,如果找到,我想选择它。这是我所拥有的:

private void search_btn_Click(object sender, EventArgs e)
    {
        foreach (DataGridViewRow row in products_dgv.Rows)
        {
            string tempCode = row.Cells[0].Value.ToString(); //Code comparing
            if (tempCode == code_tb.Text) //Checks if code matchs the search code
            { 
                //I would like to do a products_dgv.selectedIndex = row.Index but it
                //doesnt work
                break;
            }
        }
    }

任何帮助深表感谢。谢谢你!

4

1 回答 1

0

您可以使用 的CurrentCell属性DataGridView来设置选择。如果您使用FullRowSelect作为选择模式,只需使用您想要选择的行中的任何单元格。例如:

...
if (tempCode == code_tb.Text) //Checks if code matchs the search code
{ 
     products_dgv.CurrentCell = row.Cells[0];
     break;
}
...
于 2011-12-13T08:18:12.773 回答