Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

UserLookAndFeel.Style Property

Gets or sets the style of the current UserLookAndFeel object. This property is no longer supported.

Namespace: DevExpress.LookAndFeel

Assembly: DevExpress.Utils.v24.2.dll

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

#Declaration

[Browsable(false)]
[DefaultValue(LookAndFeelStyle.Skin)]
[DXCategory("Appearance")]
[EditorBrowsable(EditorBrowsableState.Never)]
public virtual LookAndFeelStyle Style { get; set; }

#Property Value

Type Default Description
LookAndFeelStyle Skin

The style of the current UserLookAndFeel object.

Available values:

Name Description Example
Flat

Control borders are flat. It is not recommended that you use this style (see this announcement for more details: WinForms Deprecation Notice — Classic Visual Styles).

LookAndFeel_Flat

UltraFlat

Borders have an Office XP style. Borders and the client area are highlighted when the mouse pointer is positioned over them or they are focused. It is not recommended that you use this style (see this announcement for more details: WinForms Deprecation Notice — Classic Visual Styles).

LookAndFeel_UltraFlat LookAndFeel_UltraFlat_hot

Style3D

Control borders are three-dimensional. It is not recommended that you use this style (see this announcement for more details: WinForms Deprecation Notice — Classic Visual Styles).

LookAndFeel_Style3D

Office2003

Borders and buttons have an Office 2003 style. The borders and client area are highlighted when the mouse pointer is positioned over them or they are focused. It is not recommended that you use this style (see this announcement for more details: WinForms Deprecation Notice — Classic Visual Styles).

LookAndFeel_Office2003 LookAndFeel_Office2003_hot

Skin

Control elements are painted using the skin specified by the UserLookAndFeel.SkinName property.

LookAndFeel_Skin

#Remarks

This property is no longer supported.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Style property.

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