谁能帮我在单词中找到一个字符串,即如何在datagridview中搜索名称的任何部分?例如。RamGopalVarma,如果我在搜索选项中只键入 varma,它应该在 gridview 中找到。
下面是我的代码,只有在我给出全名时才有效。当我将“等于”更改为“包含”时,它不起作用。
private void button3_Click(object sender, EventArgs e)
{
dataGridView1.ClearSelection();
// Code to search the alphanumneric Part Number (in Column1 header called "Name") and highlihgt the row
foreach (DataGridViewRow row in dataGridView1.Rows)
{
if (row.Cells["Name"].Value.ToString().Equals(textBox3.Text, StringComparison.CurrentCultureIgnoreCase))
{
dataGridView1.Rows[row.Index].Selected = true;
dataGridView1.Rows[row.Index].DefaultCellStyle.BackColor = Color.Yellow;
}
}
}