Skip to main content
.NET 6.0+

NestedFrame.ViewItem Property

Provides access to the View Item that uses the NestedFrame.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public ViewItem ViewItem { get; }

Property Value

Type Description
ViewItem

A ViewItem that uses the nested Frame.

Remarks

You can use this property to access the parent View and its object from a Controller activated for the nested Frame.

public partial class MyViewController : ViewController {
    protected override void OnActivated() {
        base.OnActivated();
        NestedFrame nestedFrame = Frame as NestedFrame;
        if (nestedFrame != null) {
            View parentView = nestedFrame.ViewItem.View;
            Object parentObject = parentView.CurrentObject;
        }
    }
}
See Also