corelibraries-devexpress-dot-xpf-dot-core-d3f455e3.md
Provides access to compatibility settings.
Namespace : DevExpress.Xpf.Core
Assembly : DevExpress.Data.Desktop.v25.2.dll
NuGet Packages : DevExpress.Data.Desktop, DevExpress.ExpressApp.Win.Design
public static class CompatibilitySettings
Public Module CompatibilitySettings
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;
}
}
Public Partial Class App
Inherits Application
Private Shared Sub New()
DevExpress.Xpf.Core.CompatibilitySettings.AllowEditTextExpressionInFormatRule = True
End Sub
End Class
Object CompatibilitySettings
See Also