I'm working in the MVVM design patter with WPF. I have a context menu 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 selection changed 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