How to implement INotifyPropertyChanged without strings 14 June 2010 Peter-Himschoot .NET Development INotifyPropertyChanged is an interface which is very important to do proper databinding and is heavily used in the MVVM pattern. However, to implement it you have to raise the PropertyChanged event whenever a data-bound property changes value, and you have to pass the name of the property to it. Th... [More]
Using Model-View-ViewModel with WPF 20 March 2010 Peter-Himschoot .NET Development, WPF/Silverlight In this blog post I want to show my way of implementing the Model-View-ViewModel pattern for WPF. I hope it serves as a simple example for those of you who want to start using it. The advantage of MVVM is that the view, which is a WPF thing, doesn’t contain any code. Instead the view uses a lot of ... [More]