Skip to main content

AccordionControl.HeaderContent Property

Gets or sets the AccordionControl header‘s content. This is a dependency property.

Namespace: DevExpress.Xpf.Accordion

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

NuGet Package: DevExpress.Wpf.Accordion

Declaration

public object HeaderContent { get; set; }

Property Value

Type Description
Object

An object that represents the Accordion header‘s contents.

Remarks

Use the AccordionControl.ShowHeader property to control the visibility of Accordion’s header.

You can provide the header content template using the AccordionControl.HeaderContentTemplate property. If you have more than one template that can be used to render the accordion’s header content, you can implement custom logic to choose the required template. To do this, derive from the DataTemplateSelector class, implement the SelectTemplate method that returns a template which meets the required condition, and assign it to the AccordionControl.HeaderContentTemplateSelector property.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the HeaderContent property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also