Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

#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
.OptionsButtonPanel .Buttons
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