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

AccordionControl.IsExpanded Property

Gets or sets whether the AccordionControl is expanded. 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 IsExpanded { get; set; }

Property Value

Type Description
Boolean

true, if the AccordionControl is expanded; otherwise, false.

Remarks

You can specify the IsExpanded property to show the AccordionControl in the expand or collapse mode.

The code sample below shows the AccordionControl in the collapse mode:

<dxa:AccordionControl IsExpanded="False"> ... </dxa:AccordionControl>
See Also