Table of Contents

Enum BindingMode

Namespace
Avalonia.Data
Assembly
Avalonia.Base.dll

Defines possible binding modes.

public enum BindingMode

Fields

Default = 0

Uses the default binding mode specified for the property.

OneTime = 3

Updates the target when the application starts or when the data context changes.

OneWay = 1

Binds one way from source to target.

OneWayToSource = 4

Binds one way from target to source.

TwoWay = 2

Binds two-way with the initial value coming from the target.