| Description | To allow scenarios like this, where you don't want to update the source on every key stroke:
<Grid
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBox Text="{Binding Text, ElementName=source, UpdateSourceTrigger=PropertyChanged, Delay=1000}" Width="200"/>
<TextBlock x:Name="source" Text="Type something here..." Margin="3,10"/>
</StackPanel>
</Grid>
|
|---|