2022-06-27 13:02:31 +08:00

23 lines
617 B
C#

namespace LemonUI.Menus
{
/// <summary>
/// The Style of title for the Color Panel.
/// </summary>
public enum ColorTitleStyle
{
/// <summary>
/// Does not shows any Title.
/// The count will still be shown if <see cref="NativeColorPanel.ShowCount"/> is set to <see langword="true"/>.
/// </summary>
None = -1,
/// <summary>
/// Shows a Simple Title for all of the Colors.
/// </summary>
Simple = 0,
/// <summary>
/// Shows the Color Name as the Title.
/// </summary>
ColorName = 1
}
}