Skip to main content
A newer version of this page is available. .

Theme.RegisterTheme(Theme) Method

Registers the specified theme in the ThemeManager.

Namespace: DevExpress.Xpf.Core

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

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.

See Also