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

AccordionControl.ItemContainerStyle Property

Gets or sets the style applied to accordion item containers. This is a dependency property.

Namespace: DevExpress.Xpf.Accordion

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

NuGet Package: DevExpress.Wpf.Accordion

Declaration

public Style ItemContainerStyle { get; set; }

Property Value

Type Description
Style

A Style object that represents the accordion item container style.

Remarks

Target Type: AccordionItem

You can use standard appearance properties to colorize accordion items:

<dxa:AccordionControl.ItemContainerStyle>
    <Style TargetType="dxa:AccordionItem">
        <Setter Property="Foreground" Value="Red"/>
    </Style>
</dxa:AccordionControl.ItemContainerStyle>
See Also