Can anyone please explain me how is INotifyPropertChanged’s PropertyChanged event is handled in the listener(UI).
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Well, assuming you talk about binding, it checks for which property name the event was fired, get’s the binding source object to see if it has such a property (via reflection), and if so gets the value and sets it to the bound target property. (This is a simplification)