Load
Winformメソッドで次のコードを参照してください。
List<CustomersDTO> res = new List<CustomersDTO>();
res = _CustomerBO.GetCustomers();
customerBindingSource.DataSource = res;
customerDataGridView.DataSource = this.customerBindingSource;
customerBindingNavigator.BindingSource = this.customerBindingSource;
検索ボタンでフィルタリングしたいのですが、フィルタリングされたレコードを画面に表示できません。
customerBindingSource.Filter = "Active = false";
私は何かが欠けています..私はresearchをしました。誰でも正確なコード例を教えてもらえますか? 実装について読みましIBindingList
たが、BindingSource でそれを行う方法がわかりません..
誰でも助けることができますか?