0

任何人都可以在从中搜索记录后帮助我刷新datagridview。即,当我第一次搜索一个值时,下面的代码将从 dgv 中选择记录;当我在 dgv 中搜索第二个值时,它正在选择第二个值,但仍选择第一个搜索值。

私人无效按钮2_Click(对象发送者,EventArgs e)

{

        dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;            
        try
        {         

            foreach (DataGridViewRow row in dataGridView1.Rows)
            {
                if (row.Cells["Name"].Value.ToString().ToUpperInvariant().Contains(textBox1.Text.ToUpperInvariant()))
                {                        
                    dataGridView1.Rows[row.Index].Selected = true;
                    //dataGridView1.Rows[row.Index].DefaultCellStyle.BackColor = Color.Yellow;
                    //dataGridView1.Refresh();


                }

            }                                
        }
        catch (Exception exc)
        {

        }


    }
4

1 回答 1

0

通过使用 dataGridView1.ClearSelection() 得到它

于 2013-07-06T19:53:36.393 回答