ShowViewStrategyBase.ShowViewFromCommonView(View, Frame, ActionBase) Method
In This Article
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 |
---|---|---|---|
source |
Frame | null | A Frame object where XAF shows a View. |
source |
Action |
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