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

BackstageViewControl.CloseButtonVisibility Property

Gets or sets whether the button that closes the control is visible.

Namespace: DevExpress.Xpf.Ribbon

Assembly: DevExpress.Xpf.Ribbon.v24.2.dll

NuGet Package: DevExpress.Wpf.Ribbon

#Declaration

public Visibility CloseButtonVisibility { get; set; }

#Property Value

Type Description
Visibility

A Visibility enumeration value, such as Visible, Hidden or Collapsed, that specifies whether the button that closes the control is visible. The default is Visible.

#Remarks

The CloseButtonVisibility property specifies the visibility of the button that closes the BackstageViewControl. This property can be set to the following values:

  • Visible—Display the button.

    BackstageViewControl_CloseButtonVisibility_Visible

  • Hidden—Do not display the button, but reserve space for the button in the layout.

    BackstageViewControl_CloseButtonVisibility_Hidden

  • Collapsed—Do not display the button, and do not reserve space for it in the layout.

    BackstageViewControl_CloseButtonVisibility_Collapsed

See Also