Skip to main content

CompatibilitySettings Class

Provides access to compatibility settings.

Namespace: DevExpress.Xpf.Core

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

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

Declaration

public static class CompatibilitySettings

Remarks

Use the static properties of the CompatibilitySettings class to define compatibility settings.

Specify compatibility settings in the application constructor to apply them before the DevExpress WPF Controls are used:

public partial class App : Application {
    static App() {
        DevExpress.Xpf.Core.CompatibilitySettings.AllowEditTextExpressionInFormatRule = true;
    }
}

Inheritance

Object
CompatibilitySettings
See Also