TaskbarItemProgressState.cs 158 B

123456789101112
  1. using System;
  2. namespace Microsoft.Windows.Shell;
  3. public enum TaskbarItemProgressState
  4. {
  5. None,
  6. Indeterminate,
  7. Normal,
  8. Error,
  9. Paused
  10. }