Skip to main content
All docs
V26.1
  • LightweightTheme.FluentLight Field

    The lightweight FluentLight theme.

    Namespace: DevExpress.Xpf.Core

    Assembly: DevExpress.Xpf.Core.v26.1.dll

    Declaration

    public static readonly LightweightTheme FluentLight

    Field Value

    Type Description
    LightweightTheme

    The lightweight FluentLight theme (the part of the FluentCategory).

    Remarks

    The following code snippet applies the FluentLight theme to the entire application:

    using DevExpress.Xpf.Core;
    // ...
    public partial class App : Application {
        static App()
        {
            // Enable lightweight themes
            CompatibilitySettings.UseLightweightThemes = true;
            // Apply the FluentLight lightweight theme
            ApplicationThemeHelper.ApplicationThemeName = LightweightTheme.FluentLight.Name;
        }
    }
    

    Refer to the following help topic for more information: Lightweight Themes.

    See Also