Skip to main content
.NET Framework 4.6.2+

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

Frame.ProcessActionContainer Event

Occurs when the Action Containers displayed in the current Frame are changed.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public event EventHandler<ProcessActionContainerEventArgs> ProcessActionContainer

#Event Data

The ProcessActionContainer event's data class is ProcessActionContainerEventArgs. The following properties provide information specific to this event:

Property Description
ActionContainer Specifies the Action Container currently being processed.

#Remarks

Handle the ProcessActionContainer event to customize Action Containers. This event fires when you execute the Frame.SetView and Frame.SetTemplate methods. If the Frame is nested, the event also fires when Action Containers are registered and unregistered.

To customize an Action’s control, use the CustomizeControl event.

See Also