For what purpose? If you want to filter a DataTable transparently, you could just set the RowFilter property of the DataTable's default view. No need to really go about using another control for this.
Eg:
MyDataTable.DefaultView.RowFilter = "Price > 5";