关于C#查找按钮的实现?
在这里,我点击查找按钮,房间编号,textbox,开始三个控件的Enable显示,然后在textbox中输入左边存在的房间号,此表中查找的是1103,按了开始按钮之后显示如上图,但是左边的黑色三角没有跟随其一块儿运动当前选中的行,我的代码如下,请大家帮忙看看,该如何解决?
private void button4_Click(object sender, EventArgs e)
{
int i;
for (i = 0; i < this.dataGridView1.Rows.Count; i++)
{
if (this.dataGridView1.Rows[i].Cells[0].Value.ToString()==textBox3.Text)
{
break;
}
}
//MessageBox.Show("this.dataGridView1.CurrentRow.Cells[0].Value.ToString()");
this.dataGridView1.Rows[i].Selected = true;
this.textBox3.Clear();
this.label7.Enabled = false;
this.textBox3.Enabled = false;
this.button4.Enabled = false;
}