https://github.com/lostmsu/recursivechangenotifier
Track changes in nested INotifyPropertyChanged and INotifyCollectionChanged objects
https://github.com/lostmsu/recursivechangenotifier
Last synced: over 1 year ago
JSON representation
Track changes in nested INotifyPropertyChanged and INotifyCollectionChanged objects
- Host: GitHub
- URL: https://github.com/lostmsu/recursivechangenotifier
- Owner: lostmsu
- License: mit
- Created: 2016-09-30T04:06:23.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2022-07-27T18:21:49.000Z (almost 4 years ago)
- Last Synced: 2024-10-02T14:16:42.996Z (almost 2 years ago)
- Language: C#
- Size: 30.3 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[](https://badge.fury.io/nu/RecursiveChangeNotifier)
```csharp
var listener = ChangeListener.Create(myViewModel);
listener.PropertyChanged +=
new PropertyChangedEventHandler(listener_PropertyChanged);
listener.CollectionChanged +=
new NotifyCollectionChangedEventHandler(listener_CollectionChanged);
```