Search code examples
c#bindingsourcebindinglist

filter binding source or bindinglist with textbox_keypress


I use winforms and c#.

How can I filter Binding source or binding list. with a textbox text ? I meam while I am typing in a textbox my grid is filtering with a %Like method not (=,equal)method.

thanks.


Solution

  • I use delegate for this problem. Some code like bellow

            _List = _List.FindAll(
                delegate(MyEntity entity)
                {
                    return entity.Title.Contains(TXT_Title.Text);
                }
            );
            Gview.DataSource = _List  ;