27 lines
451 B
C#
27 lines
451 B
C#
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
// ReSharper disable once CheckNamespace
|
|||
|
|
namespace WPFluent.Controls;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// States of the <see cref="ThumbRate"/> control.
|
|||
|
|
/// </summary>
|
|||
|
|
public enum ThumbRateState
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// No thumb has been clicked.
|
|||
|
|
/// </summary>
|
|||
|
|
None,
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// The thumb up has been clicked.
|
|||
|
|
/// </summary>
|
|||
|
|
Liked,
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// The thumb down has been clicked.
|
|||
|
|
/// </summary>
|
|||
|
|
Disliked,
|
|||
|
|
}
|