I have a parent object called a page that has a list of objects called Control:
public class Page { List<CustomControl> controls {get;set;} }
The CustomControl class has the following settings:
public class CustomControl { string Name {get;set;} string Value {get;set;} }
Say, for example, that the page class has two CustomControl A and B. Is it possible to notify the user control B when the value of the Custom Control A property changes so that it can change some of its properties.
I was thinking of implementing the INotifyPropertyChanged event in the CustomControl class, as now I can notify the CustomControl instance when another instance of the same class has some property of its Modified.
Manthan
source share