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.OptionsBeakPanel Property

Provides access to the settings applied to the current FlyoutPanel displayed as a beak form.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v24.2.dll

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

#Declaration

[DXCategory("Options")]
public BeakPanelOptions OptionsBeakPanel { get; }

#Property Value

Type Description
DevExpress.Utils.BeakPanelOptions

A BeakPanelOptions object representing the settings applied to the current FlyoutPanel displayed as a beak form.

#Remarks

Read the OptionsBeakPanel property to obtain access to the settings applied to the current FlyoutPanel displayed as a beak form. The BeakPanelOptions object contains the following properties:

  • BeakPanelOptions.AnimationType — gets or sets the animation used to show and hide the beak form.
  • BeakPanelOptions.BackColor — gets or sets the beak form’s background color.
  • BeakPanelOptions.BeakLocation — gets or sets the beak location relative to the beak form.
  • BeakPanelOptions.BorderColor — gets or sets the beak form’s border color.
  • BeakPanelOptions.CloseOnOuterClick — gets or sets whether the beak form closes on light dismiss.
  • BeakPanelOptions.Opacity — gets or sets the percentage of the beak form opacity.

To display a FlyoutPanel as a beak form, call the FlyoutPanel.ShowBeakForm method.

See Also