Files
Shrlalgo.RvKits/WPFluent/Controls/Window/WindowCornerPreference.cs

32 lines
537 B
C#

// ReSharper disable once CheckNamespace
namespace WPFluent.Controls;
/// <summary>
/// Ways you can round windows.
/// </summary>
public enum WindowCornerPreference
{
/// <summary>
/// Determined by system or application preference.
/// </summary>
Default,
/// <summary>
/// Do not round the corners.
/// </summary>
DoNotRound,
/// <summary>
/// Round the corners.
/// </summary>
Round,
/// <summary>
/// Round the corners slightly.
/// </summary>
RoundSmall,
}