corelibraries-devexpress-dot-xpf-dot-core-73da30d1.md
Lists values that specify how the DXBinding (DXEvent, DXCommand) markup extensions resolve input expressions.
Namespace : DevExpress.Xpf.Core
Assembly : DevExpress.Data.Desktop.v25.2.dll
NuGet Packages : DevExpress.Data.Desktop, DevExpress.ExpressApp.Win.Design
public enum DXBindingResolvingMode
Public Enum DXBindingResolvingMode
| 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.
|
The following properties accept/return DXBindingResolvingMode values:
The values listed by this enumeration are used to set the CompatibilitySettings.DXBindingResolvingMode property.
See Also