How can a button be bound to a command in a view model like in WPF with MVVM?
|
I've attached Then, I just see if I can cast and run it if I can, example:
For even an easier life, try subclassing the controls (e.g. |
||||
|
|
|
I was wondering if the same thing could be done and ended writing a simple CommandManager that queries the registered commands (on the Application.Idle event) and uses databinding to change the Enabled state of the control This is the code I'm using right now:
and this is an exmaple of how to use it:
Also if you need the code, I blogged about it here |
|||||
|
|
You could create a generic command binding class that allows a command to be bound to any class that inherits from
The command binding can then be set up using the following code:
This is only the bare bones of my implementation to give you a start so naturally there are a few caveats:
The generic constraint can also be changed to |
||||
|
|
|
I don't think you can do it directly but how about using the button's click handler to invoke the command? It's not as clean as WPF but you still get your separation. |
|||
|
|
I'd recommend implementing INotifyPropertyChanged you can use it in WinForms as well as WPF. See here for an introduction and here for some additional information. |
|||
|
|
|
You might find the WAF Windows Forms Adapter interesting. It shows how to apply the Model-View-ViewModel (MVVM) Pattern in a Windows Forms application. The Adapter implementation provides a solution for the missing Command support in Windows Forms. |
|||
|
|
|
If you want to bind the command to the control using the designer, check this demo app where I show how to use MVVM in Windows Forms: https://bitbucket.org/lbras/mvvmforms The only code you have to write in the code-behind is the creation of the view model instance. |
||||
|
|