Skip to content

Latest commit

 

History

History
20 lines (10 loc) · 825 Bytes

README.md

File metadata and controls

20 lines (10 loc) · 825 Bytes

ViewModel

Some tiny and useful well known base classes for building ViewModels at any .NET Standard >= 1.6 project.

Available as a nuget package ViewModel-Base.

A well known basic class that implements INotifyPropertyChanged.

See a working example

Based on BindableBase, add a useful way to manage dependencies between observable properties.

You can add the attribute PropertySource over a property that depends of another one, and it will automatically notify all the transitive changes.

See a working example