WPF: PropertyChangedCallback triggered only once
问题 I have a user control, which exposes a DependencyProperty called VisibileItems Every time that property gets updated, i need to trigger another event. To achieve that, i added a FrameworkPropertyMetadata with PropertyChangedCallback event. For some reason, this event gets called only once, and doesn't trigger the next time VisibleItems is changed. XAML: <cc:MyFilterList VisibleItems="{Binding CurrentTables}" /> CurrentTables is a DependencyProperty on MyViewModel. CurrentTables gets changed