In a Silverlight application I’m trying to find out when a property on a usercontrol has changed. I’m interested in one particular DependencyProperty, but unfortunately the control itself doesn’t implement INotifyPropertyChanged.
Is there any other way of determining if the value has changed?
In WPF you have DependencyPropertyDescriptor.AddValueChanged, but unfortunately in Silverlight there’s no such thing. So the answer is no.
Maybe if you explain what are you trying to do you can workaround the situation, or use bindings.