This repository was archived by the owner on Dec 27, 2024. It is now read-only.
Releases: bramborman/NotifyPropertyChangedBase
Releases · bramborman/NotifyPropertyChangedBase
NotifyPropertyChangedBase v1.3.0
- important bugfix in property validation
- added .NET Standard 1.0 project
- adds support for .NET Core and other platforms
- supports UWP so UWP-only project is no longer needed
- added unit tests to verify code quality
- added a simple documentation/guidelines to readme
OnPropertyChangedmethod is now virtual
DOWNLOAD FROM NUGET.ORG HERE
NotifyPropertyChangedBase v1.2.1
- improved property value validation
DOWNLOAD FROM NUGET.ORG HERE
NotifyPropertyChangedBase v1.2.0
- added a way to register and unregister
PropertyChangedCallbacks after property registration using theRegisterPropertyChangedCallbackandUnregisterPropertyChangedCallbackmethods
DOWNLOAD FROM NUGET.ORG HERE
NotifyPropertyChangedBase v1.1.0
- added an ability to disable invoking the
PropertyChangedevent using theIsPropertyChangedEventInvokingEnabledproperty - added an ability to disable invoking the
PropertyChangedCallbackHandlerspecified for properties using theIsPropertyChangedCallbackInvokingEnabledproperty - fixed exception that prevented from setting
nullto any property
DOWNLOAD FROM NUGET.ORG HERE
NotifyPropertyChangedBase v1.0.1
- hotfix to enable using
Nullable<T>
DOWNLOAD FROM NUGET.ORG HERE
NotifyPropertyChangedBase v1.0.0
NotifyPropertyChangedBase provides you an easy to use base class NotifyPropertyChanged that helps you implement the INotifyPropertyChanged interface which can help you in many cases, whether are you developing WPF, Console, UWP or any other app.
This is a first public release.