Skip to main content

FlyoutDialog(Form, String, String, MessageBoxButtons, MessageBoxDefaultButton) Constructor

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

Namespace: DevExpress.XtraBars.Docking2010.Customization

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public FlyoutDialog(
    Form owner,
    string caption,
    string description,
    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.

description String

A String value that is the FlyoutDialog description.

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