Skip to main content
A newer version of this page is available. .

RibbonControl.MinimizationButtonVisibility Property

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

Namespace: DevExpress.Xpf.Ribbon

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

Declaration

public RibbonMinimizationButtonVisibility MinimizationButtonVisibility { get; set; }

Property Value

Type Description
DevExpress.Xpf.Ribbon.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:

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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the MinimizationButtonVisibility property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also