如何在 LISTBOX MVVM LIGHT 上设置多个项目

发布于 2024-12-06 01:12:59 字数 100 浏览 1 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

转瞬即逝 2024-12-13 01:13:00

将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文