Describes how the data propagates in a binding.
Syntax
<object property="enumMemberName"/>
Attributes
- VersionAttribute(NTDDI_WIN8)
- WebHostHiddenAttribute()
Members
The BindingMode enumeration has these members.
| Member | Value | Description |
|---|---|---|
| OneWay | 1 |
Updates the target property when the binding is created. Changes to the source object can also propagate to the target. |
| OneTime | 2 |
Updates the target property when the binding is created. |
| TwoWay | 3 |
Updates either the target or the source object when either changes. When the binding is created, the target property is updated from the source. |
Remarks
For OneWay and TwoWay bindings, dynamic changes to the source don't automatically propagate to the target. You must implement the INotifyPropertyChanged interface on the source object for this to happen.
For TwoWay bindings, changes to the target automatically propagate to the source, except if the binding target is the Text property. In that case, the update happens only when the TextBox loses focus.
For OneTime and OneWay bindings, calls to DependencyObject.SetValue automatically change the target value and delete the binding.
Examples
This example demonstrates how to set the binding mode in XAML.
<TextBox x:Name="MyTextBox" Text="Text" Foreground="{Binding Brush1, Mode=OneWay}"/>
Requirements
|
Minimum supported client | Windows 8 |
|---|---|
|
Minimum supported server | Windows Server 2012 |
|
Namespace |
|
|
Metadata |
|
See also
Build date: 12/4/2012