通过TextBox过滤GridView而不会丢失c#中网格内的checkBox

时间:2018-02-16 03:51:26

标签: c# checkbox datagridview filtering

我有关于DataGridView的问题,里面有复选框。我通过使用数据表填充gridview并将其传递给绑定源。 enter image description here

当我在文本框中搜索时,问题从这里开始,所有复选框都变为未选中状态。 enter image description here

这是我使用文本框过滤网格的代码

BindingSource bs;
bs.Filter = string.Format("NAME LIKE '%{0}%'", txtSearch.Text);

编辑:我也使用rowFilter但仍然失败。

 DataView dv = (dgvGrid.DataSource as DataTable).DefaultView;
 dv.RowFilter = string.Format("NAME LIKE '%{0}%'", txtSearch.Text);

0 个答案:

没有答案