Is it MVVM correct to manually invoke RaisePropertyChanged on some property, for example that has no setter?
Is it MVVM correct to manually invoke RaisePropertyChanged on some property, for example that
Share
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.
Most definitely.
Here is an example: Assume a Person class has 3 properties: firstName, lastName and fullName. fullName is a read only property (only a getter). Then the setter of firstName will raise property changed for both the “firstName” property as well as the “fullName” property.