Click or drag to resize
BindingMode Enumeration
Describes how the data propagates in a binding.

Namespace: Windows.UI.Xaml.Data
Assembly: CSharpXamlForHtml5 (in CSharpXamlForHtml5.dll) Version: 1.0.0.0
Syntax
C#
public enum BindingMode
Members
  Member nameValueDescription
OneWay1 Updates the target property when the binding is created. Changes to the source object can also propagate to the target.
OneTime2 Updates the target property when the binding is created.
TwoWay3 Updates either the target or the source object when either changes. When the binding is created, the target property is updated from the source.
See Also