wpf-devexpress-dot-xpf-dot-accordion-dot-accordioncontrol-d3639014.md
Gets or sets the Summary Item position. This is a dependency property.
Namespace : DevExpress.Xpf.Accordion
Assembly : DevExpress.Xpf.Accordion.v25.2.dll
NuGet Package : DevExpress.Wpf.Accordion
public SummaryItemPosition SummaryItemPosition { get; set; }
Public Property SummaryItemPosition As SummaryItemPosition
| Type | Description |
|---|---|
| SummaryItemPosition |
A SummaryItemPosition enumeration value.
|
Available values:
| Name | Description |
|---|---|
| Bottom |
The Summary Item is shown under the regular items.
| | Top |
The Summary Item is shown above the regular items.
| | None |
The Summary Item is hidden.
|
The Summary Item is the AccordionControl‘s element that allows invoking a popup window with all accordion items:
Use the following properties to customize the summary item:
| Propery | Description |
|---|---|
| AccordionControl.SummaryItemHeader | Gets or sets the summary item’s header. |
| AccordionControl.SummaryItemGlyph | Gets or sets the summary item’s glyph. |
| SummaryItemPosition | Gets or sets the summary item’s position. |
The following image shows a custom summary item:
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