Releases: thomaslevesque/EssentialMVVM
Releases · thomaslevesque/EssentialMVVM
1.0.2
New
- Add
SetPropertyResult.AndRaiseCanExecuteChanged
, to refresh a command'sCanExecute
when the property value changes. It can be used like this:
private string _foo;
public string Foo
{
get => _foo;
set => Set(ref _foo, value).AndRaiseCanExecuteChanged(_barCommand);
}
private DelegateCommand? _barCommand;
1.0.1
Add NuGet package metadata; no functional change.
1.0.0
First (supposedly) stable release