Force update notifications for DependencyProperty even when it doesn't change
问题 I have a custom WPF control. It has a typical DependencyProperty , let's call it Status , which is updated periodically via binding. (More specifically, it is bound to a property which sends notifications according to INotifyPropertyChanged ). I want to implement a certain 'expiration' behaviour: if Status is not updated for a certain time, something happens. Ideally, this logics should be within my custom control (I have many instances of it). I set up a DispatcherTimer in the Status change