Skip to main content
A newer version of this page is available. .

FlyoutPanelButtonOptions.Buttons Property

Provides access to the collection of buttons displayed in the FlyoutPanel‘s built-in button panel.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v18.2.dll

Declaration

[DXCategory("Appearance")]
[ListBindable(false)]
public BaseButtonCollection Buttons { get; }

Property Value

Type Description
DevExpress.XtraEditors.ButtonPanel.BaseButtonCollection

A BaseButtonCollection object representing a button collection.

Property Paths

You can access this nested property as listed below:

Object Type Path to Buttons
FlyoutPanel
OfficeNavigationBar

Remarks

Read the Buttons property to obtain the collection of buttons displayed in the FlyoutPanel‘s built-in button panel. To display this panel within a FlyoutPanel, add buttons to the Buttons collection and enable the button panel by setting the FlyoutPanelButtonOptions.ShowButtonPanel property to true.

For a button panel displayed within a FlyoutPanel, use the FlyoutPanel.ButtonClick event to process button clicks. For the button panel displayed within a Peek Form in the OfficeNavigationBar, handle the OfficeNavigationBar.PeekFormButtonClick event.

See Also