namespace WPFluent.Taskbar; /// /// Specifies the state of the progress indicator in the Windows task bar. /// public enum TaskBarProgressState { /// /// No progress indicator is displayed in the task bar area. /// None = 0x0, /// /// A pulsing green (W10) or gray (W11) indicator is displayed in the task bar area. /// Indeterminate = 0x1, /// /// A green progress indicator is displayed in the task bar area. /// Normal = 0x2, /// /// A red progress indicator is displayed in the task bar area. /// Error = 0x4, /// /// A yellow progress indicator is displayed in the task bar area. /// Paused = 0x8, }