我有关于DataGridView的问题,里面有复选框。我通过使用数据表填充gridview并将其传递给绑定源。
当我在文本框中搜索时,问题从这里开始,所有复选框都变为未选中状态。
这是我使用文本框过滤网格的代码
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);