Browse Source

Add WindowTransparencyLevel enum.

pull/3962/head
Dan Walmsley 6 years ago
parent
commit
5b3d5db1d6
  1. 20
      src/Avalonia.Controls/WindowTransparencyLevel.cs

20
src/Avalonia.Controls/WindowTransparencyLevel.cs

@ -0,0 +1,20 @@
namespace Avalonia.Controls
{
public enum WindowTransparencyLevel
{
/// <summary>
/// The window background is Black where nothing is drawn in the window.
/// </summary>
None,
/// <summary>
/// The window background is Transparent where nothing is drawn in the window.
/// </summary>
Transparent,
/// <summary>
/// The window background is a blur-behind where nothing is drawn in the window.
/// </summary>
Blur
}
}
Loading…
Cancel
Save