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

UserLookAndFeel.SetSkinStyle(SkinStyle) Method

Applies the desired DevExpress skin to the application.

Namespace: DevExpress.LookAndFeel

Assembly: DevExpress.Utils.v21.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Win.Design, DevExpress.Wpf.Core

Declaration

public void SetSkinStyle(
    SkinStyle skinStyle
)

Parameters

Name Type Description
skinStyle DevExpress.LookAndFeel.SkinStyle

A DevExpress.LookAndFeel.SetSkinStyle enumerator value that specifies the skin name.

Remarks

The sample below illustrates how to apply the bonus “Blueprint” skin to the current form and all its controls.

this.LookAndFeel.SetSkinStyle(SkinStyle.Blueprint);
See Also