Skip to main content

RibbonControl.MinimizationButtonVisibility Property

Gets or sets the visibility of the Ribbon Control's Minimize button.

Namespace: DevExpress.Xpf.Ribbon

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

#Declaration

public RibbonMinimizationButtonVisibility MinimizationButtonVisibility { get; set; }

#Property Value

Type Description
RibbonMinimizationButtonVisibility

A RibbonMinimizationButtonVisibility value that specifies the Minimize button's visibility.

#Remarks

The Minimize button allows an end-user to temporarily hide the contents of the Ribbon Control's pages:

Ribbon_MinimizeButton

When the MinimizationButtonVisibility property is set to Auto, the Minimize button is visible in the Office 2010 style (see RibbonControl.RibbonStyle) and hidden in the Office 2007 style. To always display the Minimize button, set the MinimizationButtonVisibility property to Visible. To hide the button, regardless of the current paint style, set the MinimizationButtonVisibility property to Collapsed.

To get the actual visibility state of the Minimize button, use the RibbonControl.IsMinimizationButtonVisible property.

See Minimizing Ribbon to learn more.

See Also