Skip to main content
All docs
V24.2
.NET Framework 4.6.2+

DevExpress v24.2 Update — Your Feedback Matters

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

ShowViewStrategyBase.ShowViewFromCommonView(View, Frame, ActionBase) Method

Shows a specific View in the same window in SDI mode, and in a new window or tab in MDI mode.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public void ShowViewFromCommonView(
    View view,
    Frame sourceFrame = null,
    ActionBase sourceAction = null
)

#Parameters

Name Type Description
view View

A View.

#Optional Parameters

Name Type Default Description
sourceFrame Frame null

A Frame object where XAF shows a View.

sourceAction ActionBase null

If XAF displays a View as a result of an Action, this property contains the reference to the Action’s instance.

#Remarks

The ShowViewFromCommonView method opens the specified View. In Single Window mode, XAF displays the View in the same window. Otherwise, XAF opens the View in a new Frame (window or tab in the case of xref:DevExpress.ExpressApp.UIType.TabbedMDI mode).

See Also