Skip to main content
All docs
V26.1
  • Theme.FluentLightName Field

    The short name of the FluentLight lightweight theme.

    Namespace: DevExpress.Xpf.Core

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

    Declaration

    public const string FluentLightName = "FluentLight"

    Field Value

    Type Description
    String

    The short name of the FluentLight lightweight theme.

    Remarks

    The following code snippet applies the FluentLight lightweight 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 = Theme.FluentLightName;
        }
    }
    

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

    See Also