LightweightTheme.FluentLight Field
The lightweight FluentLight theme.
Namespace: DevExpress.Xpf.Core
Assembly: DevExpress.Xpf.Core.v26.1.dll
Declaration
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