Gets or sets a value that indicates the direction of the data flow in the binding.
Public Property Mode As BindingMode
Dim instance As Binding Dim value As BindingMode value = instance.Mode instance.Mode = value
public BindingMode Mode { get; set; }
public: property BindingMode Mode { BindingMode get (); void set (BindingMode value); }
public function get Mode () : BindingMode public function set Mode (value : BindingMode)
<object Mode="BindingMode" .../>
To support OneWay and TwoWay bindings, the underlying data must implement INotifyPropertyChanged. For details, see How to: Implement Property Change Notification.
For TwoWay or OneWayToSource bindings, you can control the target-to-source updates by setting the UpdateSourceTrigger property. For more information, see UpdateSourceTrigger.
For more information on the different binding modes, see Data Binding Overview.
This example shows how to specify whether the binding updates only the binding target (target) property, the binding source (source) property, or both the target property and the source property.
You use the Mode property to specify the direction of the binding. The following enumeration list shows the available options for binding updates:
TwoWay updates the target property or the property whenever either the target property or the source property changes.
OneWay updates the target property only when the source property changes.
OneTime updates the target property only when the application starts or when the DataContext undergoes a change.
OneWayToSource updates the source property when the target property changes.
Default causes the default Mode value of target property to be used.
For more information, see the BindingMode enumeration.
The following example shows how to set the Mode property. For the complete sample, see Controlling the Direction and Timing of the Data Flow Sample.
<TextBlock Name="IncomeText" Grid.Row="0" Grid.Column="1" Text="{Binding Path=TotalIncome, Mode=OneTime}"/>
To detect source changes (applicable to OneWay and TwoWay bindings), the source must implement a suitable property change notification mechanism such as INotifyPropertyChanged. See How to: Implement Property Change Notification for an example of an INotifyPropertyChanged implementation.
For TwoWay or OneWayToSource bindings, you can control the timing of the source updates by setting the UpdateSourceTrigger property. See UpdateSourceTrigger for more information.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003