在datagridview中搜索多列的搜索栏

时间:2013-12-16 13:42:59

标签: c# .net winforms

我正在使用文本框搜索数据网格视图。但它只搜索一列。我也想用它来搜索其他列。我目前用于搜索栏的代码是:

private void autoZoeken_txt_TextChanged(object sender, EventArgs e)
{
    DataView DV = new DataView(dbdataset);
    DV.RowFilter = string.Format("kenteken LIKE '%{0}%'", autoZoeken_txt.Text);
    autoView_dgv.DataSource = DV;
}

1 个答案:

答案 0 :(得分:5)

您只需修改代码即可利用OR

private void autoZoeken_txt_TextChanged(object sender, EventArgs e)
{
    DataView DV = new DataView(dbdataset);
    DV.RowFilter = string.Format(
        "kenteken LIKE '%{0}%' OR field2 LIKE '%{0}%'", autoZoeken_txt.Text);
    autoView_dgv.DataSource = DV;
}

等等。