, , , :
(1). :
<TextBlock Text="{Binding ViewModelTextProperty, IsAsync=True}"/>
, ViewModelTextProperty .
(2). PriorityBinding - , -, :
<TextBlock>
<TextBlock.Text>
<PriorityBinding>
<Binding Path="ViewModelTextProperty" IsAsync="True"/>
<Binding Path="FastViewModelTextProperty" IsAsync="True"/>
</PriorityBinding>
</TextBlock.Text>
</TextBlock>
buttom. FastViewModelTextProperty, ViewModelTextProperty , .
(3). , , ( , ..). , , UI ( ) Dispatcher:
private void OnAsyncOperationCompleted()
{
Application.Current.Dispatcher.BeginInvoke(new Action(() => {
}));
}