Skip to main content

Theme.RegisterTheme(Theme) Method

Registers the specified theme in the ThemeManager.

Namespace: DevExpress.Xpf.Core

Assembly: DevExpress.Xpf.Core.v23.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public static void RegisterTheme(
    Theme theme
)

Parameters

Name Type Description
theme Theme

A String that specifies the theme name.

Remarks

To be able to apply a newly created theme to a WPF application, you should register it using the static RegisterTheme method. To apply a theme, use the static ThemeManager.SetTheme method.

To unregister a particular theme, use the static Theme.RemoveTheme method.

To unregister all manually registered themes, use the static Theme.RemoveAllCustomThemes method.

The following code snippets (auto-collected from DevExpress Examples) contain references to the RegisterTheme(Theme) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also