FlyoutDialog.Show(Form, String, String, MessageBoxButtons, MessageBoxDefaultButton) Method
Displays a FlyoutDialog with specific settings.
Namespace: DevExpress.XtraBars.Docking2010.Customization
Assembly: DevExpress.XtraBars.v25.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
public static DialogResult Show(
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. |
Returns
| Type | Description |
|---|---|
| DialogResult | A DialogResult enumeration value that this FlyoutDialog returns when closed. |