Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

AccordionControl.SummaryItemHeader Property

Gets or sets the Summary Item header. This is a dependency property.

Namespace: DevExpress.Xpf.Accordion

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

NuGet Package: DevExpress.Wpf.Accordion

#Declaration

public object SummaryItemHeader { get; set; }

#Property Value

Type Description
Object

The object that represents the Summary Item header.

#Remarks

The Summary Item is the AccordionControl‘s element that allows invoking a popup window with all accordion items:

AccordionCollapseModeSummaryItem

Use the following properties to customize the summary item:

Propery Description
SummaryItemHeader Gets or sets the summary item’s header.
AccordionControl.SummaryItemGlyph Gets or sets the summary item’s glyph.
AccordionControl.SummaryItemPosition Gets or sets the summary item’s position.

The following image shows a custom summary item:

AccordionCollapseModeSummaryItemElements

The following code sample demonstrates how to customize the summary item as shown in the image above:

<dxa:AccordionControl IsCollapseButtonVisible="True" 
    SummaryItemHeader="Items" 
    SummaryItemGlyph="{dx:DXImage Image=Technology_16x16.png}">
    ...        
</dxa:AccordionControl>

Refer to the Collapse Mode topic to learn more.

See Also