Reputation: 1904
Does .net 4 add anything new for working with MVVM?
Upvotes: 8
Views: 830
Reputation: 30031
For Silverlight 4.0, although not .NET 4.0, we now have the ICommand on Buttonbase which allows for easier binding of commands to buttons.
Upvotes: 0
Reputation: 292465
Not much... however, there has been one useful addition : InputBinding.Command
and InputBinding.CommandParameter
are now bindable dependency properties, which makes it much easier to handle keyboard and mouse events
Upvotes: 8
Reputation: 14589
No.
Some say that WPF was built with MVVM in mind, so the needed features were there from the start.
Upvotes: -4