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.
 
 
 

36 lines
951 B

using Avalonia.Metadata;
namespace Avalonia.Media
{
/// <summary>
/// Experimental Interface for producing Acrylic-like materials.
/// </summary>
[NotClientImplementable]
public interface IExperimentalAcrylicMaterial
{
/// <summary>
/// Gets the <see cref="AcrylicBackgroundSource"/> of the material.
/// </summary>
AcrylicBackgroundSource BackgroundSource { get; }
/// <summary>
/// Gets the TintColor of the material.
/// </summary>
Color TintColor { get; }
/// <summary>
/// Gets the TintOpacity of the material.
/// </summary>
double TintOpacity { get; }
/// <summary>
/// Gets the effective material color.
/// </summary>
Color MaterialColor { get; }
/// <summary>
/// Gets the fallback color.
/// </summary>
Color FallbackColor { get; }
}
}