Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TaskbarButtonProgressMode Enum

Contains values that specify the type of progress indicator to be displayed within taskbar buttons.

Namespace: DevExpress.Utils.Taskbar.Core

Assembly: DevExpress.Utils.v24.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

#Declaration

public enum TaskbarButtonProgressMode

#Members

Name Description
NoProgress

Stops displaying progress and returns the button to its regular state.

Indeterminate

An indeterminate marquee-style progress indicator, which cycles repeatedly along the length of the taskbar button.

taskbar-indeterminateprogress

Normal

The determinate progress indicator that grows in size from left to right. Advance the progress value with the TaskbarAssistant.ProgressCurrentValue property.

taskbar-determinateprogress

Error

The same as the Normal mode, but the progress bar turns red to indicate that an error has occurred.

taskbar-determinateprogress-error

Paused

The same as the Normal mode, but the progress turns yellow to indicate that progress is currently stopped.

taskbar-determinateprogress-paused

#Related API Members

The following properties accept/return TaskbarButtonProgressMode values:

#Remarks

Values provided by the TaskbarButtonProgressMode type are used to set the TaskbarAssistant.ProgressMode property.

See Also