I’ve a TextBox binded to a property. Is there a way to update the textBox’s content without using
RaisePropertyChanged(() => Property);
inside the Property?
I want to update the value of the Property1 in another Property2 and then update the value of the TextBox that’s binded to Property1 inside Property2.
Is that possible?
I believe that you may be looking for a PropertyChangedCallback.
The basic sentax is this:
See this link for more information:
http://msdn.microsoft.com/en-us/library/ms745795.aspx