Enum BindingMode
This enum describes how the data flows through a given Binding
public enum BindingMode
Fields
Default = 4Data flow is obtained from target property default
OneTime = 2Data flows from source to target once, source changes are ignored
OneWay = 1Data flows from source to target, source changes cause data flow
OneWayToSource = 3Data flows from target to source, target changes cause data flow
TwoWay = 0Data flows from source to target and vice-versa