How can I handle the Keyboard.KeyDown event without using code-behind? We are trying to use the MVVM pattern and avoid writing an event handler in code-behind file.
|
|
A little late, but here goes. Microsoft's WPF Team recently released an early version of their WPF MVVM Toolkit . In it, you'll find a class called CommandReference that can handle things like keybindings. Look at their WPF MVVM template to see how it works. |
|||||
|
|
To bring an updated answer, the .net 4.0 framework enables you to do this nicely by letting you bind a KeyBinding Command to a command in a viewmodel. So... If you wanted to listen for the Enter key, you'd do something like this:
Cheers! |
|||||||||
|
|
WOW - there's like a thousand answers and here I'm going to add another one.. The really obvious thing in a 'why-didn't-I-realise-this-forehead-slap' kind of way is that the code-behind and the If you think about it, the XAML is already intimately coupled to the ViewModel's API, so you might just as well go and make a dependency on it from the code behind. The other obvious rules to obey or ignore still applies (interfaces, null checks <-- especially if you use Blend...) I always make a property in the code-behind like this:
This is the client-code. The null check is for helping control hosting as like in blend.
Handle your event in the code behind like you want to (UI events are UI-centric so it's OK) and then have a method on the ViewModelClass that can respond to that event. The concerns are still seperated.
All these other attached properties and voodoo is very cool and the techniques are really useful for some other things, but here you might get away with something simpler... |
|||
|
|
|
I do this by using an attached behaviour with 3 dependency properties; one is the command to execute, one is the parameter to pass to the command and the other is the key which will cause the command to execute. Here's the code:
To use this from xaml you can do something like this:
Edit: CommandModelBase is a base class I use for all commands. It's based on the CommandModel class from Dan Crevier's article on MVVM (here). Here's the source for the slightly modified version I use with CreateKeyDownCommandBinding:
Comments and suggestions for improvements would be very welcome. |
|||||||
|
|
Short answer is you can't handle straight keyboard input events without code-behind, but you can handle InputBindings with MVVM (I can show you a relevant example if this is what you need). Can you provide more information on what you want to do in the handler? Code-behind isn't to be avoided entirely with MVVM. It's simply to be used for strictly UI-related tasks. A cardinal example would be having some type of 'data entry form' that, when loaded, needs to set focus to the first input element (text box, combobox, whatever). You would commonly assign that element an x:Name attribute, then hook up the Window/Page/UserControl's 'Loaded' event to set focus to that element. This is perfectly ok by the pattern because the task is UI-centric and has nothing to do with the data it represents. |
|||
|
|
|
I looked into that issue a few months ago, and I wrote a markup extension that does the trick. It can be used like a regular binding :
The full source code for this extension can be found here : http://tomlev2.wordpress.com/2009/03/17/wpf-using-inputbindings-with-the-mvvm-pattern/ Please be aware that this workaround is probably not very "clean", because it uses some private classes and fields through reflection... |
|||
|
|
|
I know this question is very old, but I came by this because this type of functionality was just made easier to implement in Silverlight (5). So maybe others will come by here too. I wrote this simple solution after I could not find what I was looking for. Turned out it was rather simple. It should work in both Silverlight 5 and WPF.
Usage:
Notice that |
|||
|
|