Skip to main content
All docs
V26.1
  • XtraMessageBox.ShowAsync(IWin32Window, String) Method

    Displays the XtraMessageBox asynchronously and returns the Task that is completed when the XtraMessageBox closes.

    Namespace: DevExpress.XtraEditors

    Assembly: DevExpress.XtraEditors.v26.1.dll

    Declaration

    public static Task<DialogResult> ShowAsync(
        IWin32Window owner,
        string text
    )

    Parameters

    Name Type Description
    owner IWin32Window

    An object that serves as the top-level window and owner of a dialog box.

    text String

    The text to display in the message box.

    Returns

    Type Description
    Task<DialogResult>

    An operation that executes asynchronously and is completed when the XtraMessageBox closes.

    See Also