Skip to main content
All docs
V25.1
  • CompatibilitySettings.LegacyDefaultTheme Property

    Specifies a legacy default theme which the application should use.

    Namespace: DevExpress.Xpf.Core

    Assembly: DevExpress.Data.Desktop.v25.1.dll

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

    Declaration

    public static LegacyDefaultTheme? LegacyDefaultTheme { get; set; }

    Property Value

    Type Description
    Nullable<LegacyDefaultTheme>

    A legacy default theme.

    Available values:

    Name Description
    DeepBlue

    The DeepBlue legacy default theme. The theme was default in the v16.1 WPF Controls and prior.

    Office2016White

    The Office2016White legacy default theme. The theme was default in the v20.1 WPF Controls and prior.

    Remarks

    ...
     partial class App : Application
      {
        protected override void OnStartup(StartupEventArgs e)
          {
            CompatibilitySettings.LegacyDefaultTheme = LegacyDefaultTheme.Office2016White;
            base.OnStartup(e);
          }
      }
    

    Note

    When you set the LegacyDefaultTheme to the Office2016White, you should reference the DevExpress.Xpf.Themes.Office2016White.v25.1

    See Also