Enum BindingMode
Describes how the data propagates in a binding.
Namespace: System.Windows.Data
Assembly: OpenSilver.dll
Syntax
public enum BindingMode
Fields
Name | Description |
---|---|
OneTime | Updates the target property when the binding is created. |
OneWay | Updates the target property when the binding is created. Changes to the source object can also propagate to the target. |
TwoWay | Updates either the target or the source object when either changes. When the binding is created, the target property is updated from the source. |