DualBindingMode Enumeration |
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public enum DualBindingMode
Public Enumeration DualBindingMode
Members
| Member name | Value | Description |
---|
| OneWay | 0 |
Binding will update the destination if the source property is changed
|
| TwoWay | 1 |
Binding will update both the destination or source if updated on either the source or destination, respectively
|
| OneWayToSource | 2 |
Binding will update the source if the destination property is changed
|
| OneTime | 3 |
Binding will only set the destination from the source when initially bound
|
| Manual | 4 |
Binding will only update when the Update(BindingUpdateMode) method is called.
|
Remarks
This specifies what direction the updates of each of the properties are automatically handled.
Only properties that have a Changed event, or objects that implement
INotifyPropertyChanged
will handle automatically updating the binding.
See Also