我的名字Hiren。 我必须在C#中创建Simple Datagridview。 (开始发展。) 我在特定列中有搜索值使用的文本框和按钮。 (它运行正常。)
但是我会在没有任何文本框的情况下直接搜索Value。
我已为此结果附加了图片。enter image description here
private void button2_Click(object sender, EventArgs e)
{
try
{
dataGridView1.ClearSelection(); //or restore rows backcolor to default
for (int i = 0; i < (dataGridView1.Rows.Count); i++)
{
if (dataGridView1.Rows[i].Cells[1].Value.ToString().StartsWith(textBox2.Text, true, CultureInfo.InvariantCulture))
{
dataGridView1.FirstDisplayedScrollingRowIndex = i;
dataGridView1.Rows[i].Selected = true; //It is also possible to color the row backgroud
return;
}
}
}
catch (Exception)
{
}
}
但我不会使用文本框。简单点击列并键入然后光标选择我输入的值。
请帮帮我。