Skip to main content
All docs
V25.1
  • AsyncDisplayMode Enum

    Lists values that specify how the button indicates executed asynchronous operations.

    Namespace: DevExpress.Mvvm

    Assembly: DevExpress.Mvvm.v25.1.dll

    NuGet Packages: DevExpress.Mvvm, DevExpress.Win.Navigation

    Declaration

    public enum AsyncDisplayMode

    Members

    Name Description
    None

    Asynchronous operations are executed without a visual indication.

    Wait

    The button displays the wait indicator during the asynchronous operation.

    WaitCancel

    The button displays the wait indicator and changes it to the cancel button when a user hovers the mouse pointer over the wait indicator. If a user presses the cancel button, the associated asynchronous command’s IsCancellationRequested property is changed to true.

    Related API Members

    The following properties accept/return AsyncDisplayMode values:

    Library Related API Members
    Cross-Platform Class Library UICommand.AsyncDisplayMode
    WPF Controls SimpleButton.AsyncDisplayMode
    SimpleButton.AsyncDisplayMode

    See Also