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