MvvmNano icon indicating copy to clipboard operation
MvvmNano copied to clipboard

Add SetProperty for easier usage

Open CayasSoftware opened this issue 5 years ago • 1 comments

Easier notification for property changes with code like this:

public foo Bar { get => _bar; set => SetProperty(ref _bar, value); }

CayasSoftware avatar Jun 28 '19 22:06 CayasSoftware

Sets the property and notifies listeners only when necessary.

But the property is always set?

And: you don't use https://github.com/Fody/PropertyChanged, do you?

aspnetde avatar Jun 29 '19 05:06 aspnetde