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.ItemContentContainerHidden Event

Occurs whenever an item element hides its content container (if any).

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DXCategory("Events")]
public event ItemContentContainerHiddenEventHandler ItemContentContainerHidden

#Event Data

The ItemContentContainerHidden event's data class is DevExpress.XtraBars.Navigation.ItemContentContainerHiddenEventArgs.

#Remarks

Items can hold custom content, placed within containers assigned to items’ AccordionControlElementBase.ContentContainer properties. Whenever such a container is hidden, the ItemContentContainerHidden event raises. Before the item is expanded again, the AccordionControl.GetContentContainer event fires. You can handle this event to add, modify or remove content containers to/from item elements.

See Also