How To Raise Property Changed events on a Dependency Property?
I ran into a similar problem where I have a dependency property that I wanted the class to listen to change events to grab related data from a service. public static readonly DependencyProperty CustomerProperty = DependencyProperty.Register(“Customer”, typeof(Customer), typeof(CustomerDetailView), new PropertyMetadata(OnCustomerChangedCallBack)); public Customer Customer { get { return (Customer)GetValue(CustomerProperty); } set { SetValue(CustomerProperty, value); } } … Read more