// (c) Copyright Microsoft Corporation.
// This source is subject to the Microsoft Public License (Ms-PL).
// Please see http://go.microsoft.com/fwlink/?LinkID=131993] for details.
// All other rights reserved.
namespace System.Windows.Controls
{
///
/// This type is used to determine the state of the item selected and the
/// previous items.
///
/// Preview
public enum RatingSelectionMode
{
///
/// All items before the selected ones are selected.
///
Continuous,
///
/// Only the item selected is visually distinguished.
///
Individual
}
}