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

UserLookAndFeel.UseDefaultLookAndFeel Property

Gets or sets whether the current object’s settings are in effect.

Namespace: DevExpress.LookAndFeel

Assembly: DevExpress.Utils.v19.1.dll

Declaration

[DefaultValue(true)]
[DXCategory("Appearance")]
public virtual bool UseDefaultLookAndFeel { get; set; }

Property Value

Type Default Description
Boolean **true**

true to use look and feel settings provided by the parent object or default look and feel object; false to enable this object’s settings.

Remarks

If the UseDefaultLookAndFeel property is set to true and the UserLookAndFeel.ParentLookAndFeel property specifies a non-null value, look and feel settings are specified by the object assigned to the UserLookAndFeel.ParentLookAndFeel property.

If the UseDefaultLookAndFeel property value is true, but the UserLookAndFeel.ParentLookAndFeel property value is null (Nothing in Visual Basic), look and feel settings are controlled by an object available via the static UserLookAndFeel.Default property. This default look and feel can be customized at design time using the DefaultLookAndFeel component.

If the UseDefaultLookAndFeel property value is false, the UserLookAndFeel.UseWindowsXPTheme and UserLookAndFeel.Style properties specify the actual look and feel applied.

The following code snippets (auto-collected from DevExpress Examples) contain references to the UseDefaultLookAndFeel 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