FlyoutAction.Commands Property
In This Article
Gets a collection of the FlyoutAction‘s buttons.
Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI
Assembly: DevExpress.XtraBars.v24.2.dll
NuGet Package: DevExpress.Win.Navigation
#Declaration
public IList<FlyoutCommand> Commands { get; }
#Property Value
Type | Description |
---|---|
IList<Flyout |
A List object that stores Flyout |
#Remarks
You can specify Flyout buttons in two ways:
- via the Flyout.FlyoutButtons property;
- via the Commands property of a FlyoutAction assigned to the Flyout.Action property.
The last approach allows you to create your own custom buttons. See the How To: Create a Message Box Flyout With User Control topic for an example.
See Also