wpf-devexpress-dot-xpf-dot-accordion-dot-accordioncontrol-1c61ffe5.md
Gets or sets the AccordionControl header‘s content. This is a dependency property.
Namespace : DevExpress.Xpf.Accordion
Assembly : DevExpress.Xpf.Accordion.v25.2.dll
NuGet Package : DevExpress.Wpf.Accordion
public object HeaderContent { get; set; }
Public Property HeaderContent As Object
| Type | Description |
|---|---|
| Object |
An object that represents the Accordion header‘s contents.
|
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.
wpf-accordion-customize-appearance/CS/AppearanceCustomization/MainWindow.xaml#L33
IsCollapseButtonVisible="True"
HeaderContent="Header"
AutoExpandAllItems="True"
See Also