ListView.Selection 更改为 RoutedCommand

发布于 2024-08-07 02:55:27 字数 328 浏览 11 评论 0原文

我正在使用 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 MenuItems. 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 技术交流群。

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

发布评论

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

评论(1

┈┾☆殇 2024-08-14 02:55:27

您可以使用附加行为将 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:

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