I'm working an the second version of an application, and as part of the rewrite I have to move to an MVVM architecture. I'm getting pressure to put absolutely every bit of code in the view model class--having c# in the code behind file is frowned upon. (I know, I know...I understand that code behind isn't a bad thing, but it isn't my call this time).

For objects which implement the command interface, it's easy. I've been able to find a ton of information on how to bind the Command of these objects to an ICommand in the view model. The problem is for objects which don't have this interface, e.g.

<ListBox
   x:Name="myListBox"
   MouseDoubleClick="myCallbackFunction">

<!-- ... -->

</ListBox>

I want to know how to bind the MouseDoubleClick event for the Listbox to myCallbackFunction, which is implemented in the view model. Is this even possible?

Thanks!

link|improve this question

75% accept rate
feedback

4 Answers

This isn't directly possible. It could be done via an Attached Property or Behavior, though it would still be a little tricky to find and invoke the appropriate method (this could be done via Reflection fairly easily).

That being said, this is typically handled via ICommand - For example, MVVM Light has a great EventToCommand behavior to map any event to an ICommand on the ViewModel. The advantage of using ICommand is that you can still use DataBinding, since the ICommand is exposed as a property.

link|improve this answer
feedback

To directly answer your question, please refer to Why to avoid the codebehind in WPF MVVM pattern? It suggests two possible things you want.

However, why do you want to bind the MouseDoubleClick of the ListBox to your ICommand in the viewmodel?

The alternative way is that you write a method in a codebehind to register the MouseDoubleClick. It is not bad due to the facts of the following.

  1. The meaningful databinding is the interaction between a view and a viewmodel. For example, when a user input some text to a TextBox, a viewmodel is also updated. On the contrary, if a viewmodel gets data from a database, it will be shown at a view. However, it is not this case that the ICommand in your viewmodel binds to the view.

  2. Of course, the CanExcute of the ICommand would important to your viewmodel, but in many cases, it is not related with the viewmodel or not concerned. In this case, the difference between the ICommand binding and the writing the codebehind is where the MouseDoubleClick event is binded with a ICommand or registered with a event handler.

link|improve this answer
The MouseDoubleClick event on the ListBox was just an example that existed in the legacy code, and I may not keep that particular event. However, I want to know if there's a way to avoid the code behind for any event like this. And my code currently has a simple event handler in the code behind which invokes a method in the view model. But for political reasons at my office, I was instructed to find a way to avoid writing code in the code behind. – RobotNerd Jun 22 '11 at 14:12
As the top of my answer and @Reed Copsey also mentiond above, there are two possible things that you want to use, which is the Attached Property or the Behavior. They are described at my question. However, I want to know why you are encouraged to avoid writing code in the code hehind. I think that the @slugster's answer of my question would help with you. – jwJung Jun 22 '11 at 16:17
The rationale is that the business logic needs to be completely decoupled from the HMI (I'm working with "purists"). However, I've tried the solutions you linked above, but I haven't been able to get either to work yet. Every potential solution is much less elegant than simply using the code behind as an intermediary. I've decided to stick with my original code and see if I can push that through on my next peer review. – RobotNerd Jun 24 '11 at 21:11
feedback

One way could be to handle the event in the code behind and call appropriate method of view model from code behind

You can also go for some ready made commanding library like this tutorial which is using ACB

link|improve this answer
feedback

I'm using EventToCommand from MVVM Light and it is working with no issues at all

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.