vote up 2 vote down star

How would you attach a propertychanged callback to a property that is inherited? Like such:

class A {
  DependencyProperty prop;
}

class B : A {
   //...
   prop.AddListener(PropertyChangeCallback);
}
flag

4 Answers

vote up 0 vote down check

Have you tried a two way data binding between the two dependency properties?

link|flag
vote up 0 vote down

@MojoFilter,

Jon's last suggestion link will give you what you're looking for: it uses weak references to register listening to changes by wrapping properties in a new object. Scroll to the bottom of "PropertyDescriptor AddValueChanged Alternative". You'll have to change the Binding code around a bit since BindingOperations doesn't exist.

link|flag
vote up 0 vote down

@Jon That was the first solution I found, unfortunately it looks like there is no DependencyPropertyDescriptor in Silverlight.

link|flag
vote up 2 vote down

(edited to remove recommendation to use DependencyPropertyDescriptor, which is not available in Silverlight)

PropertyDescriptor AddValueChanged Alternative

link|flag
None of the proposed solutions can be used at least directly with Silverlight. – Martin Liversage Aug 29 at 13:05
Removed options that don't work in Silverilght. This one should, as verified by @Dimebrain – Jon Galloway Aug 29 at 14:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.