I was trying to understand more about bindings delay and its effects. I've implemented a simple code, but, honestly, I didn't notice any visual difference in the end, with or without delays. Here is the code:
<Window x:Class="Example00.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<Grid >
<Grid.RowDefinitions >
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<TextBox Name="mySourceElement" Grid.Row="0" >Hello World</TextBox>
<TextBlock Grid.Row="1">
<TextBlock.Text>
<Binding ElementName="mySourceElement" Path="Text" Mode="TwoWay" Delay="60000" />
</TextBlock.Text>
</TextBlock>
<TextBlock Text="{Binding ElementName=mySourceElement, Mode=TwoWay, Path=Text, Delay=50000}" Grid.Row="2" />
</Grid>
It is basically a code based on a tutorial from Code Project (http://www.codeproject.com/Articles/29054/WPF-Data-Binding-Part - example zero), but using .Net 4.5 and with the delays added. I added a very long delay to visually see the difference, however I didn't notice anything different from not using delays.
I wonder if I misunderstood the property - shouldn't the text on the other textboxes wait the "delay" amount to reflect the change typed by the user on the first textbox?