Можно. По крайней мере, я сделал. Еще нужно посмотреть плюсы и минусы.
/// Listen for change of the dependency property
public void RegisterForNotification(string propertyName, FrameworkElement element, PropertyChangedCallback callback)
{
//Bind to a depedency property
Binding b = new Binding(propertyName) { Source = element };
var prop = System.Windows.DependencyProperty.RegisterAttached(
"ListenAttached"+propertyName,
typeof(object),
typeof(UserControl),
new System.Windows.PropertyMetadata(callback));
element.SetBinding(prop, b);
}
И теперь вы можете вызвать RegisterForNotification, чтобы зарегистрироваться для уведомления об изменении свойства элемента, например.
RegisterForNotification("Text", this.txtMain,(d,e)=>MessageBox.Show("Text changed"));
RegisterForNotification("Value", this.sliderMain, (d, e) => MessageBox.Show("Value changed"));
Смотрите мой пост здесь на том же http://amazedsaint.blogspot.com/2009/12/silverlight-listening-to-dependency.html