Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用winforms和c#。
如何过滤绑定源或绑定列表。带有文本框文本?当我在文本框中输入时,我的网格正在使用 %Like 方法而不是 (=,equal) 方法进行过滤。
谢谢。
我使用委托来解决这个问题。一些代码如下
_List = _List.FindAll( delegate(MyEntity entity) { return entity.Title.Contains(TXT_Title.Text); } ); Gview.DataSource = _List ;
您可能希望使用 CollectionViewSource 类来启用过滤。
看这里