This library makes it easier to create simple WPF applications using the MVVM (Model-View-ViewModel) pattern.
It basically consists of two parts
-
NotifiableBaseObject The NotifiableBaseObject implements the INotifyPropertyChanged interface, to raise an event when the value of an object changed.
-
DelegateCommand The DelegateCommand extends the ICommand interface. It provides a code contract for commands, which basically provides the commanding behavior for UI elements.
todo