过滤绑定到SampleDataSource的列表框

过滤绑定到SampleDataSource的列表框

本文介绍了过滤绑定到SampleDataSource的列表框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在发布之前已经进行了广泛的搜索,但我找不到解决方案。

I have searched extensively before posting, but I could not find a solution.


推荐答案

private ItemCollection _MatchedCollection = new ItemCollection();
  public ItemCollection MatchedCollection
  {
	get{
		foreach (ItemCollection item in Collection)
		{
			if (Textbox.text.Contain(item.Property1)) _MatchedCollection.add item;
		}
		return _MatchedCollection;
	}
  }







这篇关于过滤绑定到SampleDataSource的列表框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 21:12