带过滤功能的 Silverlight 绑定
我目前正在尝试找出 Silverlight 4 中的绑定解决方案。
我有一个可观察的项目集合。我想将其绑定到组合框,但只显示符合特定条件的项目。例如组==“测试组”。我尝试了很多方法来完成这项工作,但没有取得任何成功。
I am currently trying to figure out a binding solution in Silverlight 4.
I have an observable collection of items. I want to bind this to a ComboBox but only display the items that match a certain condition. For example group == "Test Group." I have tried quite a few ways to make this work but haven't had any success.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
过去,我在 VM 上的公开属性中使用了 LINQ,例如:
使用这种方法,您需要在 LINQ 中的底层集合发生更改时提供通知,例如:
In the past I have used LINQ in an exposed property on the VM e.g:
Using this approach you will need to provide a notification when the underlying collection in the LINQ changes e.g: