下面的代码可以正常工作并正确过滤行,但是如何将表恢复到原始状态?
DataTable table = this.dataGridView1.DataSource as DataTable;
table.DefaultView.RowFilter = comboBox.Text + " LIKE '%" + strName + "%'";
谢谢
下面的代码可以正常工作并正确过滤行,但是如何将表恢复到原始状态?
DataTable table = this.dataGridView1.DataSource as DataTable;
table.DefaultView.RowFilter = comboBox.Text + " LIKE '%" + strName + "%'";
谢谢