Click or drag to resize

DualBindingMode Enumeration

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public enum DualBindingMode
Members
  Member nameValueDescription
OneWay0 Binding will update the destination if the source property is changed
TwoWay1 Binding will update both the destination or source if updated on either the source or destination, respectively
OneWayToSource2 Binding will update the source if the destination property is changed
OneTime3 Binding will only set the destination from the source when initially bound
Manual4 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