INotifyPropertyChanged uses from the world of WPF / Silverlight

Can someone give me examples of using the System.ComponentModel.INotifyPropertyChanged interfaces (and possibly INotifyPropertyChanging ) in some popular .NET libraries or, possibly, user interface interfaces, user control sets, etc., but from the WPF world / Silverlight?

+4
source share
1 answer

Windows Forms uses INotifyPropertyChanged to bind data and did this long before WPF / Silverlight. The only thing that INotifyPropertyChanging actually uses is LINQ To SQL, and there it is used to track changes in entity classes.

+3
source

Source: https://habr.com/ru/post/1394151/


All Articles