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?
Here is one way of doing it, using the handy DependencyPropertyDescriptor class.
var pd = DependencyPropertyDescriptor.FromProperty(TextBox.TextProperty, typeof(TextBox));
pd.AddValueChanged(myTextBox, OnTextChanged);
private void OnTextChanged(object sender, EventArgs e)
{
...
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With