Skip to main content
A newer version of this page is available. .

Frame Class

Serves as the site for a nested View.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v19.1.dll

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