I started to use MVVM pattern in my app, I have ListView
and I want to raplace:
<ListView>
<ListViewItem PreviewMouseDown="Choose_PreviewMouseDown"/>
</ListView>
with something like:
<ListView>
<ListViewItem PreviewMouseDown="{Binding PreviewMouseDownCommand}"/>
</ListView>
but it says: 'PreviewMouseDownCommand' is not a method
Update
There is answer here