Skip to main content
Tab

ASPxWebControl.Theme Property

Gets or sets the name of the Theme to be applied to the control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v24.2.dll

NuGet Package: DevExpress.Web

#Declaration

[DefaultValue("")]
public virtual string Theme { get; set; }

#Property Value

Type Default Description
String String.Empty

A string value specifying the theme name.

#Remarks

Use the Theme property to apply a DevExpress Theme to an individual DevExpress web control.

protected void Page_PreInit(object sender, EventArgs e) {
    ASPxMenu.Theme = "Aqua";
}
See Also