ListView.Selection 更改为 RoutedCommand
我正在使用 WPF 进行 MVVM 设计模式工作。我有一个 ContextMenu
,其中包含 ListView
上的多个项目。根据 ListView
中选择的项目数量,我想启用/禁用某些 MenuItem
。有没有办法将 SelectionChanged
事件以及 ListView
中选定项目的数量直接路由到视图模型。如果是这样,我可以很容易地在 VM 中为 IsEnabled
定义一个依赖属性。我只是想避免使用代码隐藏来处理这个问题。
凯莉
I'm working in the MVVM design pattern with WPF. I have a ContextMenu
with several items in it on a ListView
. Based on the number of items selected in the ListView
, I want to enable/disable certain MenuItem
s. Is there a way to route the SelectionChanged
event along with the number of selected items in the ListView
directly to the view model. If so, I can define a dependency property in the VM for IsEnabled
quite easily. I'm just trying to avoid code-behind to handle this.
Kelly
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用附加行为将 SelectionChanged 事件路由到您的 VM。基本上,您创建一个 bool 类型的附加属性。当此属性设置为 true 时,您可以为目标菜单的 SelectionChanged 事件注册一个事件处理程序。
然后附加属性可以包含要执行的命令(数据绑定到虚拟机中类似 RelayCommand 的命令)。
查看这些帖子以了解更多详细信息:
You can use an attached behavior to route the SelectionChanged event to your VM. Basically, you create an attached property of type bool. When this property is set to true, you register an event handler for the SelectionChanged event of the target Menu.
Then an attached property can contains the command to execute (databound to a RelayCommand-like command in your VM).
Check those posts for more details: