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.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
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