This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Download Microsoft Edge
More info about Internet Explorer and Microsoft Edge
This example shows how to set up to be notified when the binding target (target) or the binding source (source) property of a binding has been updated.
Example
user interface (UI) that it should update, because the bound data has changed. Note that for these events to work, and also for one-way or two-way binding to work properly, you need to implement your data class using the
INotifyPropertyChanged
interface. For more information, see
Implement Property Change Notification
.
Set the
NotifyOnTargetUpdated
or
NotifyOnSourceUpdated
property (or both) to
true
in the binding. The handler you provide to listen for this event must be attached directly to the element where you want to be informed of changes, or to the overall data context if you want to be aware that anything in the context has changed.
Here is an example that shows how to set up for notification when a target property has been updated.
<TextBlock Grid.Row="1" Grid.Column="1" Name="RentText"
Text="{Binding Path=Rent, Mode=OneWay, NotifyOnTargetUpdated=True}"
TargetUpdated="OnTargetUpdated"/>
You can then assign a handler based on the EventHandler<T> delegate, OnTargetUpdated in this example, to handle the event:
private void OnTargetUpdated(Object sender, DataTransferEventArgs args)
// Handle event
Parameters of the event can be used to determine details about the property that changed (such as the type or the specific element if the same handler is attached to more than one element), which can be useful if there are multiple bound properties on a single element.
See also
Data Binding Overview
How-to Topics