NestedFrame.ViewItem Property
Provides access to the View Item that uses the NestedFrame.
Namespace: DevExpress.ExpressApp
Assembly: DevExpress.ExpressApp.v24.1.dll
NuGet Package: DevExpress.ExpressApp
Declaration
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