Skip to main content
All docs
V25.1
  • .NET Framework 4.6.2+

    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.v25.1.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