Skip to main content

AccordionControl.IsExpanded Property

Gets or sets whether the AccordionControl is expanded. This is a dependency property.

Namespace: DevExpress.Xpf.Accordion

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

NuGet Package: DevExpress.Wpf.Accordion

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