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

ThemedWindow.AcrylicOpacity Property

Gets or sets the Acrylic effect’s opacity level applied to the ThemedWindow when the window is active. This is a dependency property.

Namespace: DevExpress.Xpf.Core

Assembly: DevExpress.Xpf.Core.v20.1.dll

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

Declaration

public double AcrylicOpacity { get; set; }

Property Value

Type Default Description
Double 0.9

The Double value that represents the opacity level. Expected values are between 0.0 and 1.0.

Remarks

The following code sample sets the AcrylicOpacity property to 0.5 (50%):

WPF Acrylic Window - Opacity Property

<dx:ThemedWindow
  xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
  ...
  EnableAcrylic="True"       
  AcrylicOpacity="0.5">
  ...
</dx:ThemedWindow>
See Also