Skip to main content

DXBindingResolvingMode Enum

Lists values that specify how the DXBinding (DXEvent, DXCommand) markup extensions resolve input expressions.

Namespace: DevExpress.Xpf.Core

Assembly: DevExpress.Data.Desktop.v23.2.dll

NuGet Packages: DevExpress.Data.Desktop, DevExpress.ExpressApp.Win.Design

Declaration

public enum DXBindingResolvingMode

Members

Name Description
LegacyStaticTyping

The DXBinding, DXCommand and DXEvent markup extensions compile their expressions thus using static typization, so you do need to cast values.

DynamicTyping

The DXBinding, DXCommand and DXEvent markup extensions interpret their expressions that allows them using dynamic typization, so you do no need to cast values.

Related API Members

The following properties accept/return DXBindingResolvingMode values:

Remarks

The values listed by this enumeration are used to set the CompatibilitySettings.DXBindingResolvingMode property.

See Also