You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
584 B
21 lines
584 B
using System;
|
|
|
|
namespace Microsoft.Windows.Controls
|
|
{
|
|
/// <summary>
|
|
/// Represents spin directions that could be initiated by the end-user.
|
|
/// </summary>
|
|
/// <QualityBand>Preview</QualityBand>
|
|
public enum SpinDirection
|
|
{
|
|
/// <summary>
|
|
/// Represents a spin initiated by the end-user in order to Increase a value.
|
|
/// </summary>
|
|
Increase = 0,
|
|
|
|
/// <summary>
|
|
/// Represents a spin initiated by the end-user in order to Decrease a value.
|
|
/// </summary>
|
|
Decrease = 1
|
|
}
|
|
}
|
|
|