public event PropertyChangedEventHandler PropertyChanged;public string myProperty { get { return name; } set { name = value; OnPropertyChanged(String); } }Where exactly i should subscribe this event in order to modify other property inside my class (like which list i'm using, which constants, etc...)Thanks a lot, I.