如何在 LISTBOX MVVM LIGHT 上设置多个项目
我在 SL4 应用程序上使用 MVVM Light。我想在数据绑定后在列表框中设置所选项目。
当要设置一项时,我没有问题,但当我必须在列表中设置多项时,我不知道该怎么做。
I'm using MVVM Light on an SL4 app. I would like to set the selected items on a listbox after it is databound.
I have no problem when there is one item to set, but I do not know how do do this when I have to set multiple items in the list.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 ItemContainerStyle 的 IsSelected 属性绑定到绑定到 ItemsSource 的视图模型上的 bool 属性。
然后,您只需将该属性设置为 true 或 false 即可选择或取消选择列表框中的项目。
Bind the IsSelected property of the ItemContainerStyle to a bool property on the view models that are bound to ItemsSource.
You can then just set that property to true or false to select or deselect the item in the listbox.