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

XtraMessageBoxArgs(IWin32Window, String, String, DialogResult[], Icon, Int32) Constructor

Initializes a new XtraMessageBoxArgs class instance.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

public XtraMessageBoxArgs(
    IWin32Window owner,
    string text,
    string caption,
    DialogResult[] buttons,
    Icon icon,
    int defaultButtonIndex
)

Parameters

Name Type Description
owner IWin32Window

An IWin32Window object that provides look and feel settings for the dialog box.

text String

The text in the message box.

caption String

The text in the title bar.

buttons DialogResult[]

An array of DialogResult values that specify which buttons to display in the input box.

icon Icon

The icon in the title bar.

defaultButtonIndex Int32

An integer value that specifies the default button’s index in the buttons array.

See Also