Home

Awesome

EssentialMVVM

NuGet version AppVeyor build AppVeyor tests

A minimalist MVVM framework, which contains the basic building blocks I was tired of rewriting in each of my projects. It doesn't do much, but strives to do it well.

It targets .NET Framework 4.5, .NET Standard 1.3 and .NET Standard 2.0, so it should be usable on most XAML platforms.

Features

BindableBase

A class that implements INotifyPropertyChanged and can be used as a base class for ViewModels. It exposes two methods:

DelegateCommand and related classes

An implementation of ICommand that accepts a delegate to specify what the command does. Exists in multiple flavors:

An asynchronous command will not allow execution (i.e. CanExecute will return false) if the previous execution is incomplete.