Back to Devexpress

FlyoutDialog.Show(Form, FlyoutAction, FlyoutProperties, Predicate<DialogResult>) Method

windowsforms-devexpress-dot-xtrabars-dot-docking2010-dot-customization-dot-flyoutdialog-dot-show-x28-form-flyoutaction-flyoutproperties-predicate-dialogresult-x29.md

latest3.4 KB
Original Source

FlyoutDialog.Show(Form, FlyoutAction, FlyoutProperties, Predicate<DialogResult>) Method

Displays a FlyoutDialog object with a flyout action, flyout properies and predicate function assigned.

Namespace : DevExpress.XtraBars.Docking2010.Customization

Assembly : DevExpress.XtraBars.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
public static DialogResult Show(
    Form owner,
    FlyoutAction action,
    FlyoutProperties parameters,
    Predicate<DialogResult> canClose
)
vb
Public Shared Function Show(
    owner As Form,
    action As FlyoutAction,
    parameters As FlyoutProperties,
    canClose As Predicate(Of DialogResult)
) As DialogResult

Parameters

NameTypeDescription
ownerForm

A Form that owns this FlyoutDialog.

| | action | FlyoutAction |

A FlyoutAction object assigned to this FlyoutDialog.

| | parameters | DevExpress.XtraBars.Docking2010.Views.WindowsUI.FlyoutProperties |

A FlyoutProperties object that stores this FlyoutDialog‘s properties.

| | canClose | Predicate<DialogResult> |

A Predicate that checks whether the FlyoutDialog can be closed. End-users cannot close the FlyoutDialog until this function returns true.

|

Returns

TypeDescription
DialogResult

A DialogResult enumerator value that is the value, returned from the FlyoutDialog after it was closed.

|

See Also

FlyoutDialog Class

FlyoutDialog Members

DevExpress.XtraBars.Docking2010.Customization Namespace