Technical Ramblings of a .NET Developer
Search RSS feed

Auto-Notifying View Models in Silverlight and WPF

March 12, 2012

Many aspects of the MVVM architecture for Silverlight and WPF development permit easy and seamless integration with the XAML markup. However, the time consuming and awkward task of raising property changed notifications for every bounded view model property leaves much to be desired. Luckily, we can leverage dynamic proxies, generated during runtime, to automatically raise property changed notification events, significantly reducing the amount of effort, time, and number of lines required to implement custom view models. [Full Article]

Categories: Microsoft .NET  |  Tags: .NET 4.0  WPF  Silverlight  MVVM  C#