Skip to main content
A newer version of this page is available. .

Messaging.GetUserChoice(String, String, MessageBoxButtons) Method

Displays a warning message box with specified message text, caption and buttons.

Namespace: DevExpress.ExpressApp.Win.Core

Assembly: DevExpress.ExpressApp.Win.v18.2.dll

Declaration

public DialogResult GetUserChoice(
    string message,
    string caption,
    MessageBoxButtons buttons
)

Parameters

Name Type Description
message String

A string which is the text displayed within the message box.

caption String

A string which is the message box caption.

buttons MessageBoxButtons

A MessageBoxButtons enumeration value defining which buttons to display within the message box.

Returns

Type Description
DialogResult

A DialogResult enumeration value, which indicates the user choice made within the message box.

Remarks

This method used the Messaging.Show method to display a message box. The MessageBoxIcon.Warning icon is displayed within the message box.

AskConfirmation_Save

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the GetUserChoice(String, String, MessageBoxButtons) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also