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

FlyoutDialog(Form, String, MessageBoxButtons, MessageBoxDefaultButton) Constructor

Initializes a new instance of the FlyoutDialog class with the specified settings.

Namespace: DevExpress.XtraBars.Docking2010.Customization

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

public FlyoutDialog(
    Form owner,
    string caption,
    MessageBoxButtons buttons,
    MessageBoxDefaultButton defaultButton
)

Parameters

Name Type Description
owner Form

A Form that owns this FlyoutDialog.

caption String

A String value that is the FlyoutDialog caption.

buttons MessageBoxButtons

A MessageBoxButtons enumerator value that specifies what buttons this FlyoutDialog will display.

defaultButton MessageBoxDefaultButton

A MessageBoxDefaultButton enumeration value that specifies which FlyoutDialog button is the default one. A default button is considered as clicked when end-users press the Enter key as the FlyoutDialog pops up.

See Also