Skip to main content
.NET 6.0+

WinApplication.GetUserChoice(String, MessageBoxButtons) Method

Displays a message box with the specified text and set of buttons.

Namespace: DevExpress.ExpressApp.Win

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

NuGet Package: DevExpress.ExpressApp.Win

Declaration

public DialogResult GetUserChoice(
    string message,
    MessageBoxButtons buttons
)

Parameters

Name Type Description
message String

A string, which is the message to be displayed within the message box.

buttons MessageBoxButtons

A MessageBoxButtons enumeration value defining buttons to display.

Returns

Type Description
DialogResult

A DialogResult enumeration value specifying the user choice.

Remarks

Uses the Messaging.GetUserChoice method to display a message box. The caption is set to the XafApplication.Title value.

See Also