0

我已经用数据填充了一个网格视图,它工作正常,我还编写了这段代码来搜索并突出显示按钮单击的结果:

private void button10_Click(object sender, EventArgs e)
    {
        foreach (DataGridViewRow row in dataGridView2.Rows)
        {
            if (row.Cells["CardSerial"].Value.ToString().Equals(textBox2.Text))
            {
                dataGridView2.Rows[row.Index].DefaultCellStyle.BackColor = Color.Yellow;
            }
        }
    }

现在我的问题是如何更改此代码以将结果显示为网格视图的成员并突出显示它们

4

1 回答 1

0

尝试隐藏与搜索条件不匹配的行:

private void button10_Click(object sender, EventArgs e)
    {
        foreach (DataGridViewRow row in dataGridView2.Rows)
        {
            if (row.Cells["CardSerial"].Value.ToString().Equals(textBox2.Text))
            {
                dataGridView2.Rows[row.Index].DefaultCellStyle.BackColor = Color.Yellow;
            }
            else
            {
                dataGridView2.Rows[row.Index].Visible = false;
            }
        }
    }
于 2013-07-30T15:00:54.350 回答