Skip to main content
.NET 6.0+

Frame.ProcessActionContainer Event

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

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v23.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