A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
515 B

namespace Avalonia.Media
{
/// <summary>
/// Background Sources for Acrylic.
/// </summary>
public enum AcrylicBackgroundSource
{
/// <summary>
/// The acrylic has no background.
/// </summary>
None,
/// <summary>
/// Cuts through all render layers to reveal the window background.
/// This means if your window is transparent or blurred it
/// will be blended with the material.
/// </summary>
Digger
}
}