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

TdxFluentDesignFormBackgroundBlur Enum

Enumerates background effects for Fluent Design application forms.

#Declaration

Delphi
TdxFluentDesignFormBackgroundBlur = (
    Default,
    None,
    Standard,
    Acrylic
);

#Members

Name Description Example
Default

The dxDefaultFluentDesignFormBackgroundBlur global constant determines the active background effect for a Fluent Design form.

Default Acrylic Background

None

A Fluent Design form’s background is semitransparent and has no blur effect. Use this option for the highest performance.

Transparent Background

Standard

Applies a simple blur effect to a Fluent Design form’s semitransparent background.

The Background Blur Effect

Acrylic

The acrylic material from the Fluent Design System is applied to a form’s background. The background consists of five blended layers with individual noise effects and opacities. This is the most calculations-intensive effect.

All Acrylic Effects

#Remarks

An effect’s base color depends on skin and palette applied to a Fluent Design form.

Note

TdxFluentDesignFormBackgroundBlur is a scoped enumeration type. Use the type name together with a scope resolution token (. in Delphi or :: in C++Builder) followed by an enumeration value to refer to this value. For example, use TdxFluentDesignFormBackgroundBlur.Standard (in Delphi) or TdxFluentDesignFormBackgroundBlur::Standard (in C++Builder) to refer to the Standard value in code.

#Direct TdxFluentDesignFormBackgroundBlur Type Reference

The TdxCustomFluentDesignForm.BackgroundBlur property references the TdxFluentDesignFormBackgroundBlur type.

See Also