DxTab Class
A tab without content within a Tabs component.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
public class DxTab :
DxTabBase
Remarks
To add the <DxTab>
component to an application, follow the steps below:
- Create an application. If you use Microsoft project templates, configure the application as described in this topic: Register DevExpress Blazor Resources.
- Add the
<DxTab>
…</DxTab>
markup to your application.
To specify a tab’s text, use the Text property.
<DxTabs>
<DxTab Text="Michael Suyama"></DxTab>
<DxTab Text="Robert King"></DxTab>
<DxTab Text="Laura Callahan"></DxTab>
</DxTabs>
@* ... *@
Inheritance
Object
ComponentBase
DevExpress.Blazor.Base.DxAsyncDisposableComponent
See Also