Registering to a DependencyProperty's Change Event
Sebastien Lambla wrote a cool post about how to correctly get notifications for the changes in dependency property values.
In a nutshell:
DependencyPropertyDescriptor prop = DependencyPropertyDescriptor.FromProperty(
MyType.MyDependencyProperty,
typeof(MyType));
prop.AddValueChanged(this, this.OnMyDependencyPropertyChanged);