RatingSelectionMode.cs 735 B

12345678910111213141516171819202122232425
  1. // (c) Copyright Microsoft Corporation.
  2. // This source is subject to the Microsoft Public License (Ms-PL).
  3. // Please see http://go.microsoft.com/fwlink/?LinkID=131993] for details.
  4. // All other rights reserved.
  5. namespace System.Windows.Controls
  6. {
  7. /// <summary>
  8. /// This type is used to determine the state of the item selected and the
  9. /// previous items.
  10. /// </summary>
  11. /// <QualityBand>Preview</QualityBand>
  12. public enum RatingSelectionMode
  13. {
  14. /// <summary>
  15. /// All items before the selected ones are selected.
  16. /// </summary>
  17. Continuous,
  18. /// <summary>
  19. /// Only the item selected is visually distinguished.
  20. /// </summary>
  21. Individual
  22. }
  23. }