Skip to main content
.NET 6.0+

DevExpress v24.1 Update — Your Feedback Matters

Our What's New in v24.1 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 Class

Serves as the site for a nested View.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v24.1.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public class Frame :
    IDisposable

#Remarks

Frames are used to represent nested Views. Frames are constructed automatically by XAF, and you do not need to instantiate them manually.

You can access the current Frame from a Controller via its Controller.Frame property. Using the retrieved Frame, you can access all Controllers created for the current Frame via the Frame.Controllers property. You can also access the View displayed by the Frame via the Frame.View property. To access the control representing a Frame in a UI, use the Frame.Template property.

For additional information on Frames, refer to the Windows and Frames help topic.

See Also