Skip to main content
A newer version of this page is available. .

DxTab Class

A tab without content within a Tabs component.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v22.1.dll

NuGet Package: DevExpress.Blazor

Declaration

public class DxTab :
    DxTabBase

Remarks

To add the <DxTab> component to an application, follow the steps below:

  1. Create an application. If you use Microsoft project templates, configure the application as described in this topic: Microsoft Templates (NuGet Packages).
  2. Add the <DxTab></DxTab> markup to your application.

To specify a tab’s text, use the Text property.

Navigation Landing Tab

<DxTabs>
    <DxTab Text="Sandra Johnson"></DxTab>
    <DxTab Text="Kevin Carter"></DxTab>
    <DxTab Text="Cynthia Stanwick"></DxTab>
</DxTabs>
@* ... *@

Run Demo: Tabs

Inheritance

Object
ComponentBase
DevExpress.Blazor.Base.DxAsyncDisposableComponent
See Also