4 changed files with 43 additions and 9 deletions
@ -1,23 +1,26 @@ |
|||
namespace Avalonia.Controls |
|||
{ |
|||
/// <summary>
|
|||
/// Defines a specific subview (tab) within the <see cref="ColorView"/>.
|
|||
/// Defines a specific subview/tab within the <see cref="ColorView"/>.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// This is indexed to match the default control template ordering.
|
|||
/// </remarks>
|
|||
public enum ColorViewTab |
|||
{ |
|||
/// <summary>
|
|||
/// The components subview with sliders and numeric input boxes.
|
|||
/// The color spectrum subview with a box/ring spectrum and sliders.
|
|||
/// </summary>
|
|||
Components, |
|||
Spectrum = 0, |
|||
|
|||
/// <summary>
|
|||
/// The color palette subview with a grid of selectable colors.
|
|||
/// </summary>
|
|||
Palette, |
|||
Palette = 1, |
|||
|
|||
/// <summary>
|
|||
/// The color spectrum subview with a box/ring spectrum and sliders.
|
|||
/// The components subview with sliders and numeric input boxes.
|
|||
/// </summary>
|
|||
Spectrum, |
|||
Components = 2, |
|||
} |
|||
} |
|||
|
|||
Loading…
Reference in new issue