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

AccordionControl.IsCollapseButtonVisible Property

Gets or sets whether to display the expand-collapse button that allows showing the AccordionControl in the expand or collapse mode. This is a dependency property.

Namespace: DevExpress.Xpf.Accordion

Assembly: DevExpress.Xpf.Accordion.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Accordion, DevExpress.Wpf.Navigation

Declaration

public bool IsCollapseButtonVisible { get; set; }

Property Value

Type Description
Boolean

true, to display the expand-collapse button; otherwise, false.

Remarks

End-users can expand/collapse the AccordionControl by clicking the expand-collapse button in the top right corner:

AccordionCollapseModeButton

Set the IsCollapseButtonVisible property to true to show this button:

<dxa:AccordionControl IsCollapseButtonVisible="True"> ... </dxa:AccordionControl>
See Also