Skip to main content
A newer version of this page is available. .

CompatibilitySettings Class

Provides access to compatibility settings.

Namespace: DevExpress.Xpf.Core

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

NuGet Package: DevExpress.Data.Desktop

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