Skip to content
This repository was archived by the owner on Dec 27, 2024. It is now read-only.

Releases: bramborman/NotifyPropertyChangedBase

NotifyPropertyChangedBase v1.3.0

10 Sep 21:33

Choose a tag to compare

  • 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
  • OnPropertyChanged method is now virtual

DOWNLOAD FROM NUGET.ORG HERE

NotifyPropertyChangedBase v1.2.1

22 Apr 20:13

Choose a tag to compare

  • improved property value validation

DOWNLOAD FROM NUGET.ORG HERE

NotifyPropertyChangedBase v1.2.0

01 Apr 20:33

Choose a tag to compare

  • added a way to register and unregister PropertyChangedCallbacks after property registration using the RegisterPropertyChangedCallback and UnregisterPropertyChangedCallback methods

DOWNLOAD FROM NUGET.ORG HERE

NotifyPropertyChangedBase v1.1.0

26 Mar 17:46

Choose a tag to compare

  • added an ability to disable invoking the PropertyChanged event using the IsPropertyChangedEventInvokingEnabled property
  • added an ability to disable invoking the PropertyChangedCallbackHandler specified for properties using the IsPropertyChangedCallbackInvokingEnabled property
  • fixed exception that prevented from setting null to any property

DOWNLOAD FROM NUGET.ORG HERE

NotifyPropertyChangedBase v1.0.1

24 Mar 20:35

Choose a tag to compare

  • hotfix to enable using Nullable<T>

DOWNLOAD FROM NUGET.ORG HERE

NotifyPropertyChangedBase v1.0.0

24 Mar 16:08

Choose a tag to compare

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.

DOWNLOAD FROM NUGET.ORG HERE