Skip to main content
All docs
V24.2
.NET 8.0+
  • The page you are viewing does not exist in the .NET Framework 4.6.2+ platform documentation. This link will take you to the parent topic of the current section.

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

IModelOptionsBlazor.UIType Property

Specifies the Show View Strategy in XAF ASP.NET Core Blazor applications.

Namespace: DevExpress.ExpressApp.Blazor.SystemModule

Assembly: DevExpress.ExpressApp.Blazor.v24.2.dll

NuGet Package: DevExpress.ExpressApp.Blazor

#Declaration

[DefaultValue(UIType.SingleWindowSDI)]
[TypeConverter(typeof(UITypeConverter))]
UIType UIType { get; set; }

#Property Value

Type Default Description
UIType SingleWindowSDI

A UIType enumeration value that specifies the type of the UI used in XAF ASP.NET Core Blazor applications.

Available values:

Name Description
MultipleWindowSDI

Specifies that the Single Document Interface ShowInMultipleWindowsStrategy is used in the Windows Forms application.

SingleWindowSDI

Specifies that the Single Document Interface ShowInSingleWindowStrategy is used in the ASP.NET Core Blazor or Windows Forms application.

StandardMDI

Specifies that the Multiple Document Interface MdiShowViewStrategy is used in the Windows Forms application.

TabbedMDI

Specifies that the Multiple Document Interface MdiShowViewStrategy in tabbed mode is used in the ASP.NET Core Blazor or Windows Forms application.

#Remarks

Use this property to specify the Show View Strategy in your application.
Open the MySolution\Blazor.Server\Model.xafml file and navigate to the Options node to locate the property.

SingleWindowSDI
XAF ASP.NET Core Blazor Single Window SDI, DevExpress
TabbedMDI
XAF ASP.NET Core Blazor Tabbed MDI, DevExpress
See Also