If you want to be notified when the value of the dependency property has changed, you can do this (in the case of the Tag property):
DependencyPropertyDescriptor desc = DependencyPropertyDescriptor.FromProperty(FrameworkElement.TagProperty, typeof(FrameworkElement));
desc.AddValueChanged(someObject, someEventHandler);
source
share