windowsforms-devexpress-dot-utils-dot-flyoutpanelbuttonoptions-9b73ac6e.md
Provides access to the collection of buttons displayed in the FlyoutPanel‘s built-in button panel.
Namespace : DevExpress.Utils
Assembly : DevExpress.Utils.v25.2.dll
NuGet Packages : DevExpress.Utils, DevExpress.Wpf.Core
[DXCategory("Appearance")]
[ListBindable(false)]
public BaseButtonCollection Buttons { get; }
<DXCategory("Appearance")>
<ListBindable(False)>
Public ReadOnly Property Buttons As BaseButtonCollection
| Type | Description |
|---|---|
| DevExpress.XtraEditors.ButtonPanel.BaseButtonCollection |
A BaseButtonCollection object representing a button collection.
|
You can access this nested property as listed below:
| Object Type | Path to Buttons |
|---|---|
| FlyoutPanel |
.OptionsButtonPanel .Buttons
| | OfficeNavigationBar |
.OptionsPeekFormButtonPanel .Buttons
|
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
FlyoutPanelButtonOptions Class