Possible Duplicate:
Listen to changes of dependency property
Excuse me for my English.
I need to create a class that could subscribe to change DependencyProperty, and depending on the new value of this property to perform some action.
Like this:
MyClass obj = new MyClass();
obj.Subscribe(TextBox.TextProperty, myTextBox);
How can I do this?