I have set up a DependencyProperty, and bound a label to it.
On my class I implement INotifyPropertyChanged, and in the Set method of the DP, I call NotifyPropertyChanged.
However it's pretty slow, like it will take 2 or 3 seconds to change the label.
I know that it is not a delay in sending the notify, because I cheated and set the label from codebehind on the line After the notify, and it updated immediately, so it does seem to be the databinding update that it taking the time
