本文介绍了使用文本框过滤datagridview的最佳方法是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我通过互联网搜索如何使用文本框过滤数据gridview,
然而它使用数据源
我动态绑定内容我的gridview,
有没有办法使用textbox搜索gridview
I search through the internet how to filter data gridview using a textbox,
however it uses datasource
I dynamically bind the contents of my gridview,
is there a way to search through the gridview using textbox
推荐答案
BindingSource bs = new BindingSource();
bs.DataSource = dataGridView1.DataSource;
bs.Filter = "yourColumnName like '%" + textBox1.Text + "%'";
dataGridView1.DataSource = bs;
或
在搜索文本框更改事件中,请尝试以下操作,
(dataGridView1.DataSource as DataTable).DefaultView.RowFilter = string.Format(Field ='{0}',searchTextBox.Text);
or
In Search Text Box Changed event, try the following,
(dataGridView1.DataSource as DataTable).DefaultView.RowFilter = string.Format("Field = '{0}'", searchTextBox.Text);
这篇关于使用文本框过滤datagridview的最佳方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!