How to bind multiple selection of listview to viewmodel?
I am implementing a listview, and a button next to it. I have to be able that when i select multiple items in a listview, and then click on a button, then the selected items are put into a list. But my question is , how do i bind the selected items towards the viewmodel? I changed my selectionmode to multiple. But then, do i just have to do: SelectedItem={Binding path= selectedItems} and then make in my viewmodel a property selectedItems, and it will set these items i have selected? Or what is the right solution to do this? Christian What you can do is you can handle the Button_Click(...) in