SourceUpdated creates bubbles from nested children, but NotifyOnSourceUpdated must be set in the Binding expression:
<StackPanel SourceUpdated="StackPanel_SourceUpdated">
<TextBox Text="{Binding Path=Val1, NotifyOnSourceUpdated=True}" ></TextBox>
</StackPanel>
I would still like to hear about a method that does not require setting NotifyOnSourceUpdated for each binding expression.
source
share