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

FlyoutPanel.OptionsButtonPanel Property

Provides access to the set of options applied to the built-in button panel.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v24.2.dll

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

#Declaration

[DXCategory("Options")]
public FlyoutPanelButtonOptions OptionsButtonPanel { get; }

#Property Value

Type Description
FlyoutPanelButtonOptions

A FlyoutPanelButtonOptions object representing a set of options applied to the built-in button panel.

#Remarks

The FlyoutPanel can display the built-in button panel. Use the OptionsButtonPanel property to obtain the FlyoutPanelButtonOptions object that provides the settings related to the button panel and the collection of buttons.

To display the button panel in the FlyoutPanel, add buttons to the FlyoutPanelButtonOptions.Buttons collection and set the FlyoutPanelButtonOptions.ShowButtonPanel property to true. The position and height of the button panel within the FlyoutPanel can be specified with the FlyoutPanelButtonOptions.ButtonPanelLocation and FlyoutPanelButtonOptions.ButtonPanelHeight properties. The FlyoutPanelButtonOptions.ButtonPanelContentAlignment property allows you to specify the alignment of buttons within the button panel.

See Also