vcl-dxcustomfluentdesignform-715538e9.md
Enumerates background effects for Fluent Design application forms.
TdxFluentDesignFormBackgroundBlur = (
Default,
None,
Standard,
Acrylic
);
| Name | Description | Example |
|---|---|---|
Default |
The dxDefaultFluentDesignFormBackgroundBlur global constant determines the active background effect for a Fluent Design form.
|
|
| None |
A Fluent Design form’s background is semitransparent and has no blur effect. Use this option for the highest performance.
|
|
| Standard |
Applies a simple blur effect to a Fluent Design form’s semitransparent background.
|
|
| 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.
|
|
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.
The TdxCustomFluentDesignForm.BackgroundBlur property references the TdxFluentDesignFormBackgroundBlur type.
See Also