我想使用DataView过滤DataGridView中的数据

时间:2011-12-27 19:11:03

标签: c# datagridview dataview rowfilter

我尝试了下面的代码,但它不起作用。怎么了?

private void textBox1_TextChanged(object sender, EventArgs e)
{
    // DataView component
    DataView view = new DataView();
    view.Table = database1DataSet1.Tables["sample"];
    view.RowFilter = "surname LIKE '%" + textBox1.Text + "%'";
}

1 个答案:

答案 0 :(得分:0)

我认为您需要在设置view.RowFilter后添加以下行:

DataGridView1.DataSource = view;