BindingSource
LINQ to SQLを使用BindingList
し、プロジェクトにを実装したら、を使用してのTextbox
行をフィルター処理するDataGridView
必要があるため、テキストボックスのコンテンツを削除すると、フィルターは何にもリセットされません。
私のコードは次のとおりです。
if (textBox1.Text.Length == 0)
{
productBindingSource.Filter = null;
}
else
{
productBindingSource.Filter = "ProductName = '" + textBox1.Text +"'";
//productBindingSource.RemoveFilter();
}
productDataGridView.DataSource = productBindingSource;
しかし、これは何もしません、何か考えてください?