Skip to content

g4m3r0/WpfMvvmBase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WPF MVVM Base Library

NuGet NuGet Downloads

This library makes it easier to create simple WPF applications using the MVVM (Model-View-ViewModel) pattern.

It basically consists of two parts

  1. NotifiableBaseObject The NotifiableBaseObject implements the INotifyPropertyChanged interface, to raise an event when the value of an object changed.

  2. DelegateCommand The DelegateCommand extends the ICommand interface. It provides a code contract for commands, which basically provides the commanding behavior for UI elements.

Basic Example

todo