Gary W
Gary W

Reputation: 1904

What's new in .net 4 for MVVM?

Does .net 4 add anything new for working with MVVM?

Upvotes: 8

Views: 830

Answers (3)

Ray Booysen
Ray Booysen

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

Thomas Levesque
Thomas Levesque

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

Timores
Timores

Reputation: 14589

No.

Some say that WPF was built with MVVM in mind, so the needed features were there from the start.

Upvotes: -4

Related Questions