20

以下のコードは問題なく動作し、行を正しくフィルタリングしますが、テーブルを元の状態に戻すにはどうすればよいですか?

DataTable table = this.dataGridView1.DataSource as DataTable;
table.DefaultView.RowFilter = comboBox.Text + " LIKE '%" + strName + "%'";

ありがとう

4

2 に答える 2

38

これを試して:

table.DefaultView.RowFilter = string.Empty
于 2009-06-17T23:02:25.117 に答える
2

これも魅力のように機能します。

table.DefaultView.RowFilter = null /Nothing
于 2016-10-14T07:04:28.183 に答える